How can I check if a user has a certain role in JSP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T16:47:12Z http://stackoverflow.com/feeds/question/833322 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/833322/how-can-i-check-if-a-user-has-a-certain-role-in-jsp 1 How can I check if a user has a certain role in JSP? Sietse 2009-05-07T07:34:02Z 2009-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#833332 1 Answer by Sietse for How can I check if a user has a certain role in JSP? Sietse 2009-05-07T07:37:51Z 2009-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>&lt;req:isUserInRole role="admin"&gt; The remote user is in role "admin". &lt;/req:isUserInRole&gt; &lt;req:isUserInRole role="admin" value="false"&gt; The remote user is not in role "admin". &lt;/req:isUserInRole&gt; </code></pre>