我正在使用标签
<shiro:hasPermission name="content:view">
根据当前用户拥有的权限,在我的 JSP 的各个位置显示或隐藏内容。
但是,有时我需要组合权限,例如
<shiro:hasPermission name="content:view OR content:edit">
或者
<shiro:hasPermission name="content:view AND content:edit">
我怎么能这样做?我可以在 <c:if> 标签中使用 hasPermission 吗?shiro 是否有可用的东西或者我应该实现自己的 EL 函数?
TIA,
塞拉芬