SpringSecurity 不使用 WebSecurityConfigurerAdapter
时间: 2024-02-28 07:45:50 浏览: 68
springboot+ spring security实现登录认证
如果不使用WebSecurityConfigurerAdapter,可以通过注册一个WebSecurityCustomizer bean来配置Spring Security。在这个bean中,可以使用web.ignoring()方法来忽略一些URL路径,例如"/ignore1"和"/ignore2"。这样就可以实现不使用WebSecurityConfigurerAdapter的配置了。
阅读全文