Class DefaultHttpSecurityExpressionHandler
java.lang.Object
org.springframework.security.access.expression.AbstractSecurityExpressionHandler<RequestAuthorizationContext>
org.springframework.security.web.access.expression.DefaultHttpSecurityExpressionHandler
- All Implemented Interfaces:
- org.springframework.aop.framework.AopInfrastructureBean,- org.springframework.beans.factory.Aware,- org.springframework.context.ApplicationContextAware,- SecurityExpressionHandler<RequestAuthorizationContext>
public class DefaultHttpSecurityExpressionHandler
extends AbstractSecurityExpressionHandler<RequestAuthorizationContext>
implements SecurityExpressionHandler<RequestAuthorizationContext>
A 
SecurityExpressionHandler that uses a RequestAuthorizationContext to
 create a WebSecurityExpressionRoot.- Since:
- 5.8
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionorg.springframework.expression.EvaluationContextcreateEvaluationContext(Supplier<Authentication> authentication, RequestAuthorizationContext context) Provides an evaluation context in which to evaluate security expressions for the invocation type.protected SecurityExpressionOperationscreateSecurityExpressionRoot(Authentication authentication, RequestAuthorizationContext context) Implement in order to create a root object of the correct type for the supported invocation type.voidsetDefaultRolePrefix(String defaultRolePrefix) Sets the default prefix to be added toSecurityExpressionRoot.hasAnyRole(String...)orSecurityExpressionRoot.hasRole(String).voidsetTrustResolver(AuthenticationTrustResolver trustResolver) Sets theAuthenticationTrustResolverto be used.Methods inherited from class org.springframework.security.access.expression.AbstractSecurityExpressionHandlercreateEvaluationContext, createEvaluationContextInternal, getBeanResolver, getExpressionParser, getPermissionEvaluator, getRoleHierarchy, setApplicationContext, setExpressionParser, setPermissionEvaluator, setRoleHierarchyMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.security.access.expression.SecurityExpressionHandlercreateEvaluationContext, getExpressionParser
- 
Constructor Details- 
DefaultHttpSecurityExpressionHandlerpublic DefaultHttpSecurityExpressionHandler()
 
- 
- 
Method Details- 
createEvaluationContextpublic org.springframework.expression.EvaluationContext createEvaluationContext(Supplier<Authentication> authentication, RequestAuthorizationContext context) Description copied from interface:SecurityExpressionHandlerProvides an evaluation context in which to evaluate security expressions for the invocation type. You can override this method in order to provide a custom implementation that uses lazy initialization of theAuthenticationobject. By default, this method uses eager initialization of theAuthenticationobject.- Specified by:
- createEvaluationContextin interface- SecurityExpressionHandler<RequestAuthorizationContext>
- Parameters:
- authentication- the- Supplierof the- Authenticationto use
- context- the- SecurityExpressionHandlerto use
- Returns:
- the EvaluationContextto use
 
- 
createSecurityExpressionRootprotected SecurityExpressionOperations createSecurityExpressionRoot(Authentication authentication, RequestAuthorizationContext context) Description copied from class:AbstractSecurityExpressionHandlerImplement in order to create a root object of the correct type for the supported invocation type.- Specified by:
- createSecurityExpressionRootin class- AbstractSecurityExpressionHandler<RequestAuthorizationContext>
- Parameters:
- authentication- the current authentication object
- context- the invocation (filter, method, channel)
- Returns:
- the object
 
- 
setTrustResolverSets theAuthenticationTrustResolverto be used. The default isAuthenticationTrustResolverImpl.- Parameters:
- trustResolver- the- AuthenticationTrustResolverto use
 
- 
setDefaultRolePrefixSets the default prefix to be added toSecurityExpressionRoot.hasAnyRole(String...)orSecurityExpressionRoot.hasRole(String). For example, if hasRole("ADMIN") or hasRole("ROLE_ADMIN") is passed in, then the role ROLE_ADMIN will be used when the defaultRolePrefix is "ROLE_" (default).- Parameters:
- defaultRolePrefix- the default prefix to add to roles. The default is "ROLE_".
 
 
-