我希望每个不在路径下的 url/cobrands
和/fdt
密码请求。例如,如果我要求/fdt/name
我不应该被要求进行 http 身份验证。
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
/** code **/
@Override
protected void configure(HttpSecurity http) throws Exception {
http.exceptionHandling().authenticationEntryPoint(entryPoint()).and()
.authorizeUrls()
.antMatchers("/**").hasAnyAuthority("wf_cobrand_lettura", "wf_cobrand_fdt")
.antMatchers("/cobrands/*").permitAll()
.antMatchers("/fdt/*").permitAll()
.and()
.httpBasic();
}
}