Spring Security 支持 的 EL 表达式

为什么80%的码农都做不了架构师?>>>   hot3.png

参考一下  https://docs.spring.io/spring-security/site/docs/4.2.x/reference/html/el-access.html

Spring Security 支持的所有SpEL表达式
安全表达式 	计算结果
authentication  	用户认证对象
denyAll  	结果始终为false
hasAnyRole(list of roles)  	如果用户被授权指定的任意权限,结果为true
hasRole(role)	如果用户被授予了指定的权限,结果 为true
hasIpAddress(IP Adress)	用户地址
isAnonymous()  	是否为匿名用户
isAuthenticated()  	不是匿名用户
isFullyAuthenticated  	不是匿名也不是remember-me认证
isRemberMe()  	remember-me认证
permitAll	始终true
principal	用户主要信息对象

 

转载于:https://my.oschina.net/lemos/blog/2395899

你可能感兴趣的:(Spring Security 支持 的 EL 表达式)