Spring 5的反应式WebSockets - 如何获取初始消息

时间:2018-02-13 09:12:59

标签: java spring websocket reactive-programming

我遵循了该教程(特别是使用Browser WebSocket Client的部分):http://www.baeldung.com/spring-5-reactive-websockets 一切正常。

我想更进一步,让我的处理程序根据客户端发送的参数进行操作。在连接时,客户端正在发送消息(“event-me-from-browser”):

var clientWebSocket = new WebSocket("ws://localhost:8080/event-emitter");
clientWebSocket.onopen = function() {
    console.log("clientWebSocket.onopen", clientWebSocket);
    console.log("clientWebSocket.readyState", "websocketstatus");
    clientWebSocket.send("event-me-from-browser");
}

我试图在服务器端(java)检索该消息:

@Override
public Mono<Void> handle(WebSocketSession webSocketSession) {

   webSocketSession.receive().handle((pWebSocketMessage, pSynchronousSink) -> System.out.println(pWebSocketMessage.getPayloadAsText()));

   return webSocketSession.send(Flux.fromStream(Stream.generate(() -> getData()))
         .delayElements(Duration.ofMillis(50))
         .map(webSocketSession::textMessage))
         .and(webSocketSession.receive()
               .map(WebSocketMessage::getPayloadAsText)
               .log());
}

但它不起作用。

有什么想法吗?我做错了什么?

2 个答案:

答案 0 :(得分:1)

排除tomcat依赖项(并改为使用netty)将起作用:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <exclusions>
        <!-- Exclude the Tomcat dependency -->
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
        </exclusion>
    </exclusions>
</dependency>

答案 1 :(得分:0)

我有同样的问题。我相信可能会对Spring Boot自动导入的模块,特别是Tomcat。

我关注了这段视频https://www.youtube.com/watch?v=GlvyHIqT3K4,并使用以下堆栈立即处理了websockets:

  • Netty(不是Tomcat)
  • Spring Boot 2.0.x spring-boot-starter-parent
  • Spring Integration spring-boot-starter-integration
  • Spring WebFlux(Reactive)spring-boot-starter-webflux