我遵循了该教程(特别是使用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());
}
但它不起作用。
有什么想法吗?我做错了什么?
答案 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:
spring-boot-starter-parent
spring-boot-starter-integration
spring-boot-starter-webflux