【发布时间】:2020-05-06 16:30:54
【问题描述】:
我使用本教程中描述的弹簧设置了一个 WebSocket:https://spring.io/guides/gs/messaging-stomp-websocket/。我需要的是我的服务器每 5 秒向特定用户发送一条消息。所以我首先做了这个:
@Autowired
private SimpMessagingTemplate template;
@Scheduled(fixedRate = 5000)
public void greet() {
template.convertAndSend("/topic/greetings", new Greeting("Bufff!"));
}
而且它有效。现在要仅向特定用户发送消息,我更改了以下内容:
@Scheduled(fixedRate = 5000)
public void greet() {
template.convertAndSendToUser("MyName","/queue/greetings", new Greeting("Bufff!"));
}
在 WebSocketConfig.java 中添加队列:
public void configureMessageBroker(MessageBrokerRegistry config) {
config.enableSimpleBroker("/topic","/queue");
config.setApplicationDestinationPrefixes("/app");
}
在 GreetingController.java 中更改注解:
@MessageMapping("/hello")
@SendToUser("/queue/greetings")
public Greeting UserGreeting(HelloMessage message, Principal principal) throws Exception {
Thread.sleep(1000); // simulated delay
return new Greeting("Hello, " + HtmlUtils.htmlEscape(message.getName()) + "!");
}
并在 app.js 中更改连接功能:
var socket = new SockJS('/gs-guide-websocket');
stompClient = Stomp.over(socket);
stompClient.connect({}, function (frame) {
setConnected(true);
console.log('Connected: ' + frame);
stompClient.subscribe('user/queue/greetings', function (greeting) {
showGreeting(JSON.parse(greeting.body).content);
});
});
服务器使用 spring-boot-security 并且我通过使用 SimpUserRegistry https://stackoverflow.com/a/32215398/11663023 查找所有用户来确定 MyName 是否是正确的名称)。但不幸的是,我的代码不起作用。我已经尝试过Sending message to specific user using spring,但我不希望 Spring 区分会话而是用户。我也查看了这个Sending message to specific user on Spring Websocket,但它没有帮助,因为链接不起作用。
这是我的控制台日志:
2020-01-20 17:08:51.352 DEBUG 8736 --- [nboundChannel-3] .WebSocketAnnotationMethodMessageHandler : Searching methods to handle SEND /app/hello session=kvv0m1qm, lookupDestination='/hello'
2020-01-20 17:08:51.352 DEBUG 8736 --- [nboundChannel-3] .WebSocketAnnotationMethodMessageHandler : Invoking de.iteratec.iteraweb.controllers.GreetingController#UserGreeting[2 args]
2020-01-20 17:08:52.354 DEBUG 8736 --- [nboundChannel-3] org.springframework.web.SimpLogging : Processing MESSAGE destination=/queue/greetings-userkvv0m1qm session=null payload={"content":"Hello, hey!"}
2020-01-20 17:08:54.882 DEBUG 8736 --- [MessageBroker-2] org.springframework.web.SimpLogging : Processing MESSAGE destination=/queue/greetings-userkvv0m1qm session=null payload={"content":"Bufff!"}
2020-01-20 17:08:59.883 DEBUG 8736 --- [MessageBroker-4] org.springframework.web.SimpLogging : Processing MESSAGE destination=/queue/greetings-userkvv0m1qm session=null payload={"content":"Bufff!"}
我错过了变化吗?
【问题讨论】:
标签: spring-boot spring-security spring-websocket stomp