How can I check if a user has a certain role in JSP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T16:47:12Zhttp://stackoverflow.com/feeds/question/833322http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/833322/how-can-i-check-if-a-user-has-a-certain-role-in-jsp1How can I check if a user has a certain role in JSP?Sietse2009-05-07T07:34:02Z2009-05-07T07:37:51Z
<p>I need to make decisions in a JSP based on the user's roles. Is there a tag or EL expression that lets me do that?</p>
http://stackoverflow.com/questions/833322/how-can-i-check-if-a-user-has-a-certain-role-in-jsp/833332#8333321Answer by Sietse for How can I check if a user has a certain role in JSP?Sietse2009-05-07T07:37:51Z2009-05-07T07:37:51Z<p>There isn't one built into JSP or JSTL, but the <a href="http://jakarta.apache.org/taglibs/doc/request-doc/" rel="nofollow">request taglib</a> from the Jakarta project provides an <a href="http://jakarta.apache.org/taglibs/doc/request-doc/#isUserInRole" rel="nofollow"><code>isUserInRole</code></a> tag. <a href="http://jakarta.apache.org/taglibs/doc/request-doc/index.html#config" rel="nofollow">Install</a> the taglib, and use the tag like this:</p>
<pre><code><req:isUserInRole role="admin">
The remote user is in role "admin".
</req:isUserInRole>
<req:isUserInRole role="admin" value="false">
The remote user is not in role "admin".
</req:isUserInRole>
</code></pre>