gpt4 book ai didi

spring-boot - 白名单 '/' 端点不适用于 Spring Security 6

转载 作者:行者123 更新时间:2023-12-05 05:30:23 26 4
gpt4 key购买 nike

<分区>

我正在学习有关 Spring Security 的类(class),我正在尝试让它在最新的 Spring Security 6 上运行。我正在尝试使用基本身份验证将 localhost:8080/ 列入白名单。但是当我访问该 URL 时,它仍然要求我提供凭据。

目前我有这个bean:

@Configuration
@EnableWebSecurity
public class ApplicationSecurityConfig {

@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

return http
.authorizeHttpRequests(auth -> {
auth.requestMatchers("/").permitAll();
auth.requestMatchers("index").permitAll();
auth.requestMatchers("/css/*").permitAll();
auth.requestMatchers("js/*").permitAll();
auth.anyRequest().authenticated();
}
)
.httpBasic(withDefaults()).build();
}
}

但是默认的 / 端点,仍然没有被列入白名单。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com