Merge 7cd4efb8c8
into f5c70550ed
This commit is contained in:
commit
eb870301c9
|
@ -103,7 +103,8 @@ final class WebSecurityFilterChainValidator implements FilterChainProxy.FilterCh
|
||||||
}
|
}
|
||||||
if (filterSecurityInterceptor != null) {
|
if (filterSecurityInterceptor != null) {
|
||||||
this.logger.warn(
|
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;
|
authorizationFilter = null;
|
||||||
filterSecurityInterceptor = null;
|
filterSecurityInterceptor = null;
|
||||||
|
|
|
@ -126,7 +126,8 @@ public class DefaultFilterChainValidator implements FilterChainProxy.FilterChain
|
||||||
}
|
}
|
||||||
if (filterSecurityInterceptor != null) {
|
if (filterSecurityInterceptor != null) {
|
||||||
this.logger.warn(
|
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;
|
authorizationFilter = null;
|
||||||
filterSecurityInterceptor = null;
|
filterSecurityInterceptor = null;
|
||||||
|
|
Loading…
Reference in New Issue