作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将聊天集成到我制作的应用程序中,在学习了一些教程并运行该应用程序后,我不断在控制台上收到“哎呀!与 http://localhost:8080/ws 的连接丢失”,我尝试使用 sockjs 路径作为“/ws”,但仍然得到同样的错误,请有人向我解释我做错了什么吗?
这是我的代码片段:
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfiguration extends AbstractWebSocketMessageBrokerConfigurer {
@Override
public void registerStompEndpoints(StompEndpointRegistry stompEndpointRegistry) {
stompEndpointRegistry.addEndpoint("/ws")
.setHandshakeHandler(new CustomHandshakeHandler())
.withSockJS();
}
@Override
public void configureMessageBroker(MessageBrokerRegistry registry) {
registry.setApplicationDestinationPrefixes("/app");
registry.enableSimpleBroker("/message");
}
}
var socket = new SockJS('http://localhost:8080/ws');
stompClient = Stomp.over(socket);
stompClient.connect({}, onConnected, onError);
function onConnected() {
console.log("its working");
}
function onError(error) {
console.log(error);
}
最佳答案
我不确定 CustomHandshakeHandler
你在这里使用的。所以这可能是一个需要研究的问题。另外,考虑添加 .setAllowedOrigins("*")
到您的 stompEndpointRegistry。
除此之外,代码看起来没问题,应该可以在 IMO 工作。
关于spring-websocket - Spring Boot Websocket with stomp js : I keep getting Whoops! 与 http://localhost:8080/ws 的连接丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50170970/
我是一名优秀的程序员,十分优秀!