允许在Spring Boot中开发期间的所有传入请求

wgeznvg7  于 2022-10-04  发布在  Spring
关注(0)|答案(1)|浏览(134)

所以我想暂时允许蚂蚁匹配器中的所有请求,因为身份验证仍然没有准备好。以下是我的WebSecurityConfig:

@Configuration
@EnableWebSecurity
public class WebSecurityConfig {

    @Bean
    public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
        http.authorizeRequests().antMatchers("/**").permitAll();
        return http.build();
    }
}

但是,当我尝试通过 Postman 发出请求时,我还是收到了403错误。在添加Spring-Boot-starter-Security之前,同样的请求正在进行。

i7uaboj4

i7uaboj41#

我认为您不应该使用ant matcher,而应该使用如下所示的内容

http.authorizeRequests().anyRequest().permitAll()

相关问题