This commit is contained in:
Philipp Delmonego 2025-07-01 19:01:41 +05:45 committed by GitHub
commit eb870301c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -103,7 +103,8 @@ final class WebSecurityFilterChainValidator implements FilterChainProxy.FilterCh
}
if (filterSecurityInterceptor != null) {
this.logger.warn(
"Usage of authorizeRequests is deprecated. Please use authorizeHttpRequests in the configuration");
"Usage of authorizeRequests is deprecated. Please use authorizeHttpRequests in the configuration. "
+ "If using XML, ensure use-authorization-manager=\"true\" is configured");
}
authorizationFilter = null;
filterSecurityInterceptor = null;

View File

@ -126,7 +126,8 @@ public class DefaultFilterChainValidator implements FilterChainProxy.FilterChain
}
if (filterSecurityInterceptor != null) {
this.logger.warn(
"Usage of authorizeRequests is deprecated. Please use authorizeHttpRequests in the configuration");
"Usage of authorizeRequests is deprecated. Please use authorizeHttpRequests in the configuration. "
+ "If using XML, ensure use-authorization-manager=\"true\" is configured");
}
authorizationFilter = null;
filterSecurityInterceptor = null;