spring boot 2.0 之前所有测试都可以通过
pom添加
<!--spring security-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!--spring security test-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
之后就全报403了,是spring security有什么默认配置吗?
添加了一个简单的
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/").permitAll()
.anyRequest().authenticated();
}
}
并没有改变什么,测试类上面加 @WithMockUser
也是没用,再加@Import(WebSecurityConfig.class)
也一样。
原因找到了,漏掉了