Java constants in JSP - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T15:05:02Zhttp://stackoverflow.com/feeds/question/127328http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127328/java-constants-in-jsp2Java constants in JSPDon2008-09-24T14:02:53Z2009-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><%@ page import="com.example.Constants" %>
<%= Constants.ATTR_CURRENT_USER %>
</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-1Answer by JeeBee for Java constants in JSPJeeBee2008-09-24T14:11:24Z2008-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>
<%@ page import="com.example.Constants" %>
<%@ page import="com.example.model.User" %>
<%
User user = (User) session.getAttribute(Constants.ATTR_CURRENT_USER);
%>
<h1>Welcome <%=user.getFirstName()%></h1>
</pre>
http://stackoverflow.com/questions/127328/java-constants-in-jsp/127442#1274420Answer by ncgz for Java constants in JSPncgz2008-09-24T14:17:36Z2008-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><c:out value="${Constants.ATTR_CURRENT_USER}"/>
</code></pre>
<p>(you might have to create getters for each constant)</p>
http://stackoverflow.com/questions/127328/java-constants-in-jsp/127863#1278630Answer by maxp for Java constants in JSPmaxp2008-09-24T15:25:50Z2008-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#1282011Answer by Don for Java constants in JSPDon2008-09-24T16:25:19Z2008-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#1282340Answer by paulgreg for Java constants in JSPpaulgreg2008-09-24T16:33:22Z2008-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> <dependency>
<groupId>jakarta</groupId>
<artifactId>jakarta-taglibs-unstandard</artifactId>
<version>20060829</version>
</dependency>
</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#1288211Answer by Don for Java constants in JSPDon2008-09-24T18:10:43Z2008-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-1Answer by John Topley for Java constants in JSPJohn Topley2009-01-28T21:20:23Z2009-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>