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
Are there any plans to migrate the existing Spring Security configuration to APIs that are not deprecated and compatible with Spring Boot 3.x?
An example of a deprecated API can be found in SpringConfigSecurity. This class extends WebSecurityConfigurerAdapter which has been deprecated since Spring 5.7.0-M2. Since you cannot mix WebSecurityConfigurerAdapter and SecurityFilterChain, the current approach does not allow us to upgrade to Spring Boot 3.x.
Other Spring Security APIs might be deprecated as well.
The text was updated successfully, but these errors were encountered:
Are there any plans to migrate the existing Spring Security configuration to APIs that are not deprecated and compatible with Spring Boot 3.x?
An example of a deprecated API can be found in SpringConfigSecurity. This class extends
WebSecurityConfigurerAdapter
which has been deprecated since Spring 5.7.0-M2. Since you cannot mix WebSecurityConfigurerAdapter and SecurityFilterChain, the current approach does not allow us to upgrade to Spring Boot 3.x.Other Spring Security APIs might be deprecated as well.
The text was updated successfully, but these errors were encountered: