gpt4 book ai didi

java - Spring Boot 1.5禁用oauth2安全

转载 作者:行者123 更新时间:2023-12-02 01:21:20 26 4
gpt4 key购买 nike

如何在 Spring boot 应用程序中禁用 oauth2 安全过滤,或跳过安全检查,我只想直接访问 Spring boot @RestController 中的 GETPOST 端点,而不需要经过安全过滤。

我正在使用以下配置

security:
oauth2:
client:
access-token-validity-seconds: 3600
tokenExtractor:
type: header

pom.xml 依赖项

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>

Spring 版

<spring.version>4.3.7.RELEASE</spring.version>
<spring.boot.version>1.5.2.RELEASE</spring.boot.version>

最佳答案

如果您不想删除整个 Spring Security,您可以在 Spring 配置 bean 中为所有 url 添加忽略配置:

@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers(
"/**");
}

关于java - Spring Boot 1.5禁用oauth2安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57623630/

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