我做了配置,以免某些URL要求认证。但是,没有用。
我的配置类在这里:
@EnableOAuth2Sso
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().
antMatchers("/**", "/actuator/**", "/instances").permitAll()
.anyRequest().authenticated();
}
}
但是我发送请求http://localhost:8080/或http://localhost:8080/actuator。然后,响应是401未经授权。如何解决这个问题?