web-dev-qa-db-ja.com

Spring Boot WebSocketで特定のユーザーに通知を送信する

特定のクライアントに通知を送信したい。

例:ユーザー名ユーザー

@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfiguration extends
    AbstractWebSocketMessageBrokerConfigurer {

        @Override
        public void registerStompEndpoints(StompEndpointRegistry stompEndpointRegistry) {
            stompEndpointRegistry.addEndpoint("/socket")
                    .setAllowedOrigins("*")
                    .withSockJS();
        }

        @Override
        public void configureMessageBroker(MessageBrokerRegistry registry) {
            registry.enableSimpleBroker("/topic", "/queue");
            registry.setApplicationDestinationPrefixes("/app");

        }

コントローラー

@GetMapping("/notify")
public String getNotification(Principal principal) {
    String username = "user";

    notifications.increment();
    logger.info("counter" + notifications.getCount() + "" + principal.getName());
    //  logger.info("usersend:"+sha.getUser().getName()) ; //user

    template.convertAndSendToUser(principal.getName(), "queue/notification", notifications);

    return "Notifications successfully sent to Angular !";
}

クライアント側

角度サービス

connect() {
    let socket = new SockJs(`api/socket`);

    let stompClient = Stomp.over(socket);

    return stompClient;
}

角度コンポーネント

 let stompClient = this.webSocketService.connect();

     stompClient.connect({}, frame => {

      stompClient.subscribe('/user/queue/notification', notifications => {
               console.log('test'+notifications)
          this.notifications = JSON.parse(notifications.body).count;

      })     });

私は他の多くの質問を検索し、試しましたが、それらのどれも私のために働いていませんでした here Thanh Nguyen Vanと here

コンソール

 Opening Web Socket...
    stomp.js:134 Web Socket Opened...
    stomp.js:134 >>> CONNECT
    accept-version:1.1,1.0
    heart-beat:10000,10000


    stomp.js:134 <<< CONNECTED
    version:1.1
    heart-beat:0,0


    stomp.js:134 connected to server undefined
    reminder.component.ts:18 test callsed
    stomp.js:134 >>> SUBSCRIBE
    id:sub-0
    destination:/user/queue/notification

前もって感謝します 。

13
naila naseem

gerrytan to Spring Websocketで特定のユーザーにメッセージを送信する の回答は、/userプレフィックスを登録するためのWebソケット構成の変更に言及しています。あなたの場合、私はそれが交換することを意味すると思います

registry.enableSimpleBroker("/topic", "/queue");

registry.enableSimpleBroker("/topic", "/queue", "/user");

また、コントローラーでは、自動的に追加されるため、/userプレフィックスは必要ないと述べています。だからあなたはこれを試すことができます:

template.convertAndSendToUser(principal.getName(), "/queue/notification", notifications);

この:

template.convertAndSendToUser(principal.getName(), "/user/queue/notification", notifications);

クライアント側では、サーバーへの接続に使用したユーザー名を提供する必要があります。あなたはそれを直接挿入するかもしれません:

stompClient.subscribe('/user/naila/queue/notification', ...)

またはヘッダーから取得します。しかし、 Markus具体的なユーザーにwebsocketメッセージを送信する方法? で、ここでもユーザー名は必要ないので、次のように動作します:

stompClient.subscribe('/user/queue/notification', ...)
8
edixon

目的地でスラッシュが欠落しているようです:

template.convertAndSendToUser(principal.getName(), "/queue/notification", notifications); 
7
Sergi Almar