我正在尝试启用对我的其余 api 某些部分的匿名访问,但对其余部分禁用它。
我试过配置看起来像:
@Override
public void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().anonymous().and()
.antMatchers(SOME_URL).authenticated()
.and()
.anoymous().disable()
.antMatchers(OTHER_URL).authenticated();
}
但是后来发现后面的anonymous().disable 会覆盖之前的设置。
那么任何人都可以给我一些建议,我如何为我的部分网址启用匿名?
非常感谢!!!