gpt4 book ai didi

java - 无法在自定义 Spring Boot 启动器中使用 WebSecurityConfigurerAdapter

转载 作者:行者123 更新时间:2023-12-04 14:08:31 27 4
gpt4 key购买 nike

我正在尝试通过定义从 WebSecurityConfigurerAdapter 扩展的配置类为我的自定义安全配置(LDAP + JWT)创建我自己的 spring boot starter。 .但是,当我使用这个启动器启动我的应用程序时,我得到:

IllegalStateException: Found WebSecurityConfigurerAdapter as well as SecurityFilterChain.
Please select just one.
我发现由于 this issue of the spring security 不可能再这样做了. spring的WebSecurityConfiguration中有一个断言:
Snapshot from WebSecurityConfiguration.java
我解决了这个问题 在启动器中添加以下内容(根据问题):
@Bean
@Order(1) //Explanation for this below
open fun filterChain(http: HttpSecurity, jwtHelper: JwtHelper): SecurityFilterChain {
return http.authorizeRequests()
...
.addFilterBefore(JwtAuthenticationFilter(jwtHelper), UsernamePasswordAuthenticationFilter::class.java)
.and().build()
}

@Bean
open fun authenticationProvider(ldapConfig: LdapConfig): ActiveDirectoryLdapAuthenticationProvider {
return ActiveDirectoryLdapAuthenticationProvider(...)
}
我加了 @Order(1)因为有两个 securityFilterChains :我的(在上面的配置中定义)和另一个来自未知来源的。我想,后者是无法使用 WebSecurityConfigurerAdapter 的原因.
主要问题是我找不到它来自哪里。

断点来自 WebSecurityConfiguration ... 以防万一:
Break point from WebSecurityConfiguration
我假设,因此我不能使用 @EnableGlobalMethodSecurity(prePostEnabled = true)以及。它说:
Cannot apply org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration$EnableGlobalAuthenticationAutowiredConfigurer
to already built object

这是我的依赖项列表:
  • 带有启动器使用的模型的模块(名称:my-ldap-security-model):
  • dependencies {
    compileOnly 'org.springframework.security:spring-security-core'
    compileOnly 'org.springframework:spring-web'
    compileOnly 'javax.servlet:javax.servlet-api'
    api 'jakarta.xml.bind:jakarta.xml.bind-api'
    api 'org.glassfish.jaxb:jaxb-runtime'
    api 'io.jsonwebtoken:jjwt'
    }
  • 带有启动器使用的模型的模块(名称:my-ldap-security-spring-boot-starter):
  • dependencies {
    compile project(':my-ldap-security-model')
    compileOnly 'javax.servlet:javax.servlet-api'
    api 'org.springframework.security:spring-security-core'
    api 'org.springframework.security:spring-security-config'
    api 'org.springframework.security:spring-security-web'
    api 'org.springframework:spring-web'
    api 'org.springframework.security:spring-security-ldap'
    }
  • 应用项目:
  • dependencies {
    implementation('org.springframework.boot:spring-boot-starter-web')
    implementation('com.demo.boot:my-ldap-security-spring-boot-starter:0.0.1')
    }
    请帮我找出那个过滤器的根。

    最佳答案

    最初,默认 SecurityFilterChain如果有任何 WebSecurityConfigurerAdapter 将被禁用.但是,如果 spring 安全自动配置的优先级高于您的 WebSecurityConfigurerAdapter 的自动配置,则不起作用。 .
    解决方案 : 我加了@AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE + 10)在自动配置类之上。不再有默认的安全过滤器链 :)
    关于 @EnableGlobalMethodSecurity ...这是关于缓存。突然,它得到了修复。

    关于java - 无法在自定义 Spring Boot 启动器中使用 WebSecurityConfigurerAdapter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66456025/

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