我有一个SecurityConfig,我用JWT令牌授权请求。问题是,我想关闭安全配置来测试我的网络套接字,因为不知何故,我总是收到401…
我补充道:
@SpringBootApplication(exclude = SecurityConfig.class)
@EnableAutoConfiguration
public class MyApp {
但它仍然授权来自websocket的请求,基本上也休息。。。
有人知道如何在春天切换安全性,或者如何允许websockets消息吗?
关于
您应该添加
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@Configuration
public class ApplicationSecurity extends WebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers("/**");
}
}