我试图在春季使用websocket和使用sock.js实现推送通知。
下面是代码片段:
public class NotifyController {
@MessageMapping("/notifications")
@SendTo("/get/notifications")
public Greeting greeting(HelloMessage message) throws Exception {
new Greeting("Hello, " + message.getName() + "!");
}
}
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
@Override
public void configureMessageBroker(MessageBrokerRegistry config) {
config.enableSimpleBroker("/get/notifications");
config.setApplicationDestinationPrefixes("/gssocket");
}
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("/notifications").withSockJS();
}
}
这是前面的代码…
function connect() {
var notificationSocket = new SockJS('/notifications');
stompNotificationClient = Stomp.over(notificationSocket);
stompNotificationClient.connect({}, function(frame) {
console.log('Connected: ' + frame);
stompNotificationClient.subscribe('/get/notifications', function(greeting){
showGreeting(JSON.parse(greeting.body).content);
});
});
}
function sendNotification() {
var name = "test"
stompNotificationClient.send("/gssocket/notifications", {}, JSON.stringify({ 'name': name }));
}
我已经设法使它工作了。但问题是,我如何将信息推送给特定的目标用户。例如,有5个在线用户,分别是:user1、user2、user3、user4和user5。我希望通知只发布给user1和user2。你能告诉我如何实现这个目标吗?我想要么在后台做,要么在前端做。或者还有另一种方法来实现,使用弹簧。
谁来帮帮我。谢谢。
您可以使用SimpMessagingTemplate.convertAndSendToUser()调用检查用户目的地以针对特定用户的消息。
注意,要启用此功能,您的用户必须经过HTTP身份验证。