You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Application context fails to load after upgrading from spring boot version 3.1.5 to 3.2.1 with error message: “Couldn't find FilterChainProxy” in a list of Filters.
SecurityConfig is defined as follows: @Configuration @EnableWebSecurity(debug = true) class SecurityConfig { @Bean fun filterChain(http: HttpSecurity): SecurityFilterChain {…} }
The issue is in the debug flag of the @EnableWebSecurity annotation. If the debug flag is set to true, the Filter is instantiated with the type of DebugFilter instead of the FilterChainProxy.
The text was updated successfully, but these errors were encountered:
Didn't find this issue with the search on FilterChainProxy -> #14642 .
Which Spring Security versions have this fix? I see the 6.1.7 milestone, but Spring Boot 3.2.2 uses 6.2.1 spring security version. Is this in 6.2.2?
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
Application context fails to load after upgrading from spring boot version 3.1.5 to 3.2.1 with error message: “Couldn't find FilterChainProxy” in a list of Filters.
SecurityConfig is defined as follows:
@Configuration @EnableWebSecurity(debug = true) class SecurityConfig { @Bean fun filterChain(http: HttpSecurity): SecurityFilterChain {…} }
The issue is in the debug flag of the @EnableWebSecurity annotation. If the debug flag is set to true, the Filter is instantiated with the type of DebugFilter instead of the FilterChainProxy.
The text was updated successfully, but these errors were encountered: