タグ使ってます
<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 関数を実装する必要がありますか?
ティア、
セラフェイム