所以我想暂时允许蚂蚁匹配器中的所有请求,因为身份验证仍然没有准备好。以下是我的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之前,同样的请求正在进行。
1条答案
按热度按时间i7uaboj41#
我认为您不应该使用ant matcher,而应该使用如下所示的内容