springsecurity 忽略無效
时间: 2023-10-21 12:05:07 浏览: 64
在 Spring Security 中,可以通过配置 `WebSecurity` 的 `ignoring()` 方法来忽略无效的请求。具体来说,可以通过以下方式来实现:
```java
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers("/invalid/**");
}
// ...
}
```
上述代码中,`configure(WebSecurity web)` 方法用于配置 `WebSecurity`,其中 `ignoring()` 方法用于配置忽略的请求,这里使用 `antMatchers()` 方法指定了需要忽略的请求路径。
阅读全文