Java constants in JSP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:05:02Z http://stackoverflow.com/feeds/question/127328 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/127328/java-constants-in-jsp 2 Java constants in JSP Don 2008-09-24T14:02:53Z 2009-01-28T21:20:23Z <p>Hi,</p> <p>I have a class that defines the names of various constants, e.g.</p> <pre><code>class Constants { public static final String ATTR_CURRENT_USER = "current.user"; } </code></pre> <p>I would like to use these constants within a JSP <strong>without</strong> using Scriptlet code such as:</p> <pre><code>&lt;%@ page import="com.example.Constants" %&gt; &lt;%= Constants.ATTR_CURRENT_USER %&gt; </code></pre> <p>There appears to be a tag in the Apache <a href="http://jakarta.apache.org/taglibs/sandbox/doc/unstandard-doc/index.html#useConstants" rel="nofollow">unstandard</a> taglib that provides this functionality. However, I cannot find any way to download this taglib. I'm beginning to wonder if it's been deprecated and the functionality has been moved to another (Apache) tag library?</p> <p>Does anyone know where I can get this library, or if it's not available, if there's some other way I can access constants in a JSP without using scriptlet code?</p> <p>Cheers, Don</p> http://stackoverflow.com/questions/127328/java-constants-in-jsp/127384#127384 -1 Answer by JeeBee for Java constants in JSP JeeBee 2008-09-24T14:11:24Z 2008-09-24T14:11:24Z <p>Why do you want to print the value of the constant on the JSP? Surely you are defining them so that in the JSP you can extract objects from the session and request before you present them?</p> <pre> &lt;%@ page import="com.example.Constants" %> &lt;%@ page import="com.example.model.User" %> &lt% User user = (User) session.getAttribute(Constants.ATTR_CURRENT_USER); %> &lt;h1>Welcome &lt;%=user.getFirstName()%>&lt;/h1> </pre> http://stackoverflow.com/questions/127328/java-constants-in-jsp/127442#127442 0 Answer by ncgz for Java constants in JSP ncgz 2008-09-24T14:17:36Z 2008-09-24T14:17:36Z <p>On application startup, you can add the Constants class to the servletContext and then access it in any jsp page</p> <pre><code>servletContext.setAttribute("Constants", com.example.Constants); </code></pre> <p>and then access it in a jsp page</p> <pre><code>&lt;c:out value="${Constants.ATTR_CURRENT_USER}"/&gt; </code></pre> <p>(you might have to create getters for each constant)</p> http://stackoverflow.com/questions/127328/java-constants-in-jsp/127863#127863 0 Answer by maxp for Java constants in JSP maxp 2008-09-24T15:25:50Z 2008-09-24T15:25:50Z <p>What kind of functionality do you want to use? That tag sould be able to access any public class field by class name and field name?</p> <p>Scriptlets linking done at compile time but taglib class field access has to use such java API as reflection at runtime. Do You really need that?</p> http://stackoverflow.com/questions/127328/java-constants-in-jsp/128201#128201 1 Answer by Don for Java constants in JSP Don 2008-09-24T16:25:19Z 2008-09-26T19:34:07Z <p>Turns out there's <a href="http://www.javaranch.com/journal/200601/Journal200601.jsp#a3" rel="nofollow">another tag library</a> that provides the same functionality. It also works for Enum constants.</p> http://stackoverflow.com/questions/127328/java-constants-in-jsp/128234#128234 0 Answer by paulgreg for Java constants in JSP paulgreg 2008-09-24T16:33:22Z 2008-09-24T16:33:22Z <p>I'll use jakarta-taglibs-unstandard-20060829.jar in my project but, you're true, it seems <a href="http://jakarta.apache.org/taglibs/sandbox/doc/unstandard-doc/intro.html" rel="nofollow">not available for download anymore</a>.</p> <p>I've got that in my pom.xml in order to get that library but I think It will work only because that library is now on my local repository (I cannot find it in official repositories) :</p> <pre><code> &lt;dependency&gt; &lt;groupId&gt;jakarta&lt;/groupId&gt; &lt;artifactId&gt;jakarta-taglibs-unstandard&lt;/artifactId&gt; &lt;version&gt;20060829&lt;/version&gt; &lt;/dependency&gt; </code></pre> <p>I do not know if there's another alternative.</p> <p>I hope so because it was a good way to access constants in JSP.</p> http://stackoverflow.com/questions/127328/java-constants-in-jsp/128821#128821 1 Answer by Don for Java constants in JSP Don 2008-09-24T18:10:43Z 2008-09-24T18:10:43Z <p>I finally tracked down the <a href="http://people.apache.org/builds/jakarta-taglibs-sandbox/nightly/projects/unstandard/" rel="nofollow">unstandard tag library</a> builds.</p> http://stackoverflow.com/questions/127328/java-constants-in-jsp/489430#489430 -1 Answer by John Topley for Java constants in JSP John Topley 2009-01-28T21:20:23Z 2009-01-28T21:20:23Z <p>Just refer to <code>current.user</code> in your JSP. In my seven years of Java programming, I've never gone back and changed the value the constant refers to and therefore had to update the JSPs. You simply ain't gonna need the indirection and flexibility that using the constant everywhere provides.</p>