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
After upgrading our reactive web app from Spring Boot 3.3.6 to 3.4.0, we noticed that the servlet-based UserDetailsServiceAutoConfiguration is active. During startup, this messages is logged.
2024-11-29T13:30:38.184+01:00 WARN 21 --- [ main] .s.s.UserDetailsServiceAutoConfiguration :
Using generated security password: 87a7148a-b308-4d87-ae00-92035323b119
This generated password is for development use only. Your security configuration must be updated before running your application in production.
Where does this change come from? Shouldn't it have the annotation @ConditionalOnWebApplication(type = Type.SERVLET)?