我正在尝试在Springboot 2中禁用默认安全性,但是我不能。
在sprinboot 1.5中,我使用了security.basic.enabled = false,但现在已弃用。
我正在尝试创建一个配置类,该类扩展了WebConfigurationAdapter,从而覆盖了诸如以下的configure方法:
@Configuration
@EnableWebSecurity
public class StackWebSecurityConfigurerAdapter extends
WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.httpBasic().disable();
// http.authorizeRequests().anyRequest().permitAll(); // Also doesn't work.
}
}
你能帮我吗?