当前位置:   article > 正文

WebSocket connection to '*' failed: Error during WebSocket handshake: Unexpected response code: 404

failed: error during websocket handshake: unexpected response code: 404

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;

  1. @Component
  2. public class WebSocketConfig {
  3. /**
  4. * ServerEndpointExporter 作用
  5. *
  6. * 这个Bean会自动注册使用@ServerEndpoint注解声明的websocket endpoint
  7. *
  8. * @return
  9. */
  10. @Bean
  11. public ServerEndpointExporter serverEndpointExporter() {
  12. return new ServerEndpointExporter();
  13. }
  14. }

WebSocket 注册的bean默认是自己管理,没有托管给spring。需要将WebSocket的bean托管给spring容器。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/179240
推荐阅读
相关标签
  

闽ICP备14008679号