Summary
- The authority in Spring Security is represented by
GrantedAuthority
interface. - The
GrantedAuthority
has only one method,#getAuthority()
, which returns representation of authority as aString
. GrantedAuthority
is stored inAuthentication
instance by theAuthenticationManager
, then used by theAccessDesicionManager
when making authorization decisions.- When the authority is complicated enough to represented as a
String
,#getAuthority()
should returnnull
. - Then,
AuthorizationManager
should deal with the specialized authority. - There’s only one
GrantedAuthority
that Spring Security provide:SimpleGrantedAuthority
. - By default, role-based authorization rules include
ROLE_
as a prefix. AuthorizationManager
is responsible for both pre-authorization and post-authorization to secure objects.- The method authorization process in Spring Security is done by the interceptors, typically
AuthorizationManagerBeforeMethodInteceptor
andAuthorizationManagerAfterMethodInterceptor
, which utilizeAuthorizationManager
to control the access and secure the object. AuthorityAuthorizationManager
is the most commonAuthorizationManager
, which makes authority decision by checking whether there’re any matching authority stored inAuthentication
object.- If you need a hierarchical role, use
RoleHierarchy
to define role hierarchy as following:
@Bean
static RoleHierarchy roleHierarchy() {
return RoleHierarchyImpl.withDefaultRolePrefix()
.role("ADMIN").implies("STAFF")
.role("STAFF").implies("USER")
.role("USER").implies("GUEST")
.build();
}
// and, if using pre-post method security also add
@Bean
static MethodSecurityExpressionHandler methodSecurityExpressionHandler(RoleHierarchy roleHierarchy) {
DefaultMethodSecurityExpressionHandler expressionHandler = new DefaultMethodSecurityExpressionHandler();
expressionHandler.setRoleHierarchy(roleHierarchy);
return expressionHandler;
}