赞
踩
Spring boot 2.0配置WebSocket 出现WebSocket connection to 'ws://localhost:8080/websocket/3c9d8e1e0cf24bfdbc65b8f24367def3' failed: Error during WebSocket handshake: Unexpected response code: 404
1.首先排查路径是否正确;
2.如果路径没有问题, 检查是否配置ServerEndpointExporter;
- @Component
- public class WebSocketConfig {
- /**
- * ServerEndpointExporter 作用
- *
- * 这个Bean会自动注册使用@ServerEndpoint注解声明的websocket endpoint
- *
- * @return
- */
- @Bean
- public ServerEndpointExporter serverEndpointExporter() {
- return new ServerEndpointExporter();
- }
-
- }
WebSocket 注册的bean默认是自己管理,没有托管给spring。需要将WebSocket的bean托管给spring容器。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。