在springboot2上禁用安全性

时间:2018-06-28 15:43:41

标签: java spring-boot spring-security

我正在尝试在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.
}
}

你能帮我吗?

0 个答案:

没有答案