Spring Security에서 지원하는 웹 및 메서드 보안을 위한 표현식(Spring EL)
-
hasRole(String role)
- 현재 보안 주체(principal)가 지정된 역할을 갖고 있는지 여부를 확인하고 가지고 있다면 true를 리턴한다.
- hasRole(’admin’)처럼 파라미터로 넘긴 role이 ROLE_ 로 시작하지 않으면 기본적으로 추가한다.
(DefaultWebSecurityExpressionHandler의 defaultRolePrefix를 수정하면 커스텀할 수 있다.)
-
hasAnyRole(String… roles)
- 현재 보안 주체가 지정한 역할 중 1개라도 가지고 있으면 true를 리턴한다.
(문자열 리스트를 콤마로 구분해서 전달한다.)
- ex) hasAnyRole(’admin’, ‘user’)
-
hasAuthority(String authority)
- 현재 보안 주체가 지정한 권한을 갖고 있는지 여부를 확인하고 가지고 있다면 true를 리턴한다.
- ex) hasAuthority(’read’)
-
hasAnyAuthority(String… authorities)
- 현재 보안 주체가 지정한 권한 중 하나라도 있으면 true를 리턴한다.
- ex) hasAnyAuthority(’read’, ‘write’)
-
principal
- 현재 사용자를 나타내는 principal 객체에 직접 접근할 수 있다.
-
authentication
- SecurityContext로 조회할 수 있는 현재 Authentication 객체에 직접 접근할 수 있다.
-
permitAll
-
denyAll
-
isAnonymous()
- 현재 보안 주체가 익명 사용자면 true를 리턴한다.
-
isRememberMe()
- 현재 보안 주체가 remember-me 사용자면 true를 리턴한다.
-
isAuthenticated()
- 사용자가 익명이 아닌 경우 true를 리턴한다.
-
isFullyAuthenticated()
- 사용자가 익명 사용자나 remember-me 사용자가 아니면 true를 리턴한다.
-
hasPermission(Object target, Object permission)
- 사용자가 target에 해당 permission 권한이 있으면 true를 리턴한다.
ex) hasPermission(domainObject, ‘read’)
-
hasPermission(Object targetId, String targetType, Object permission)
- 사용자가 target에 해당 permission 권한이 있으면 true를 리턴한다.
ex) hasPermission(1, ‘com.example.domain.Message’, ‘read’)