当前位置:   article > 正文

postman webscoket连接返回200_websocket返回code200

websocket返回code200

1. 之前webscoket连接正常,加了token过滤器后,返回200,可能是过滤器将websocket也拦截了

2.WebSecurityConfigurerAdapter 中放行,配置如下

 

webSecurity.ignoring().antMatchers( "/websocket/**" );
  1. //忽略拦截
  2. @Override
  3. public void configure(WebSecurity webSecurity){
  4. //忽略此路径
  5. webSecurity.ignoring().antMatchers(
  6. "/websocket/**"
  7. );
  8. webSecurity.ignoring().antMatchers("/uauthentication/**");
  9. webSecurity.ignoring().antMatchers("/code/**");
  10. }

 3.再次用postman进行websocket连接,连接成功

 

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

闽ICP备14008679号