Tagged Questions
JSTL (JSP Standard Tag Library) is a JSP based standard tag library which offers tags to control the flow in the JSP page, date/number formatting and internationalization facilities and several utility EL functions.
32
votes
3answers
43k views
JSTL access a map value by key
I have a Map keyed by Integer. Using JSTL, how can I access a value by its key?
Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, ...
23
votes
8answers
24k views
Access Enum value using EL with JSTL
I have an Enum called Status defined as such:
public enum Status {
VALID("valid"), OLD("old");
private final String val;
Status(String val) {
this.val = val;
}
public ...
22
votes
4answers
23k views
How do you get the length of a list in the JSF expression language?
How would I get the length of an ArrayList using a JSF EL expression? "#{MyBean.somelist.length}" does not work.
20
votes
5answers
1k views
Is anyone still using JSTL?
I was about to pick up some Java web programming since not having touched Java for a couple of years. I picked up an fairly old O'Reilly book that was sitting on my bookshelf (Java Server Pages 3rd ...
19
votes
1answer
12k views
Evaluate empty or null JSTL c tags
How can I validate if a String is null or empty using the c tags of JSTL?
I have a variable of name var1 and I can display it, but I want to add a comparator to validate it.
<c:out ...
19
votes
1answer
14k views
Check a collection size with JSTL
How can i check the size of a collection with JSTL?
Something like:
<c:if test="${companies.size() > 0">
</c:if>
17
votes
2answers
22k views
Evaluate if list is empty JSTL
I've been trying to evaluate if this array list is empty or not but none of these have even compiled:
<c:if test="${myObject.featuresList.size == 0 }">
<c:if ...
13
votes
5answers
19k views
Evaluate list.contains string in JSTL
I need to hide an element if certain values are present in the JSP
The values are stored in a List so I tried:
<c:if test="${ mylist.contains( myValue ) }">style='display:none;'</c:if>
...
13
votes
13answers
27k views
How can I replace newline characters using JSP and JSTL?
I have a list of bean objects passed into my JSP page, and one of them is a comment field. This field may contain newlines, and I want to replace them with semicolons using JSTL, so that the field can ...
12
votes
1answer
10k views
12
votes
5answers
32k views
JSP <c:out> tag
Writing a JSP page, what exactly does the <c:out> do? I've noticed that the following both has the same result:
<p>The person's name is <c:out value="${person.name}" /></p>
...
11
votes
1answer
8k views
Help getting JSTL to run within tomcat and eclipse
I've been trying to get this to run, but I can't. I'm using Eclipse Galileo, Tomcat 5.5.23 and have several JSTLs around. My latest try was to use the glassfish jar file "jstl-impl-1.2.jar". I placed ...
11
votes
7answers
23k views
Format Date with fmt:formatDate JSP
I am trying to format a date with:
<fmt:formatDate value="${newsletter.createdOn}" pattern="MM/dd/yyyy"/>
newsletter is an object with a createdOn property which is java.util.Date.
When I ...
10
votes
1answer
3k views
Loop through a Map with JSTL
I'm looking to have JSTL loop through a Map and output the value of the key and it's value.
For example I have a Map which can have any number of entries, i'd like to loop through this map using JSTL ...
9
votes
5answers
2k views
GWT/Eclipse/Jetty issue: Jasper can't resolve tag libraries
I'm trying to get GWT Hosted mode working in Eclipse, à la this HOWTO. Servlets work fine, as does my GWT code, but all my JSPs fail because with errors such as the following:
[WARN] ...
9
votes
6answers
2k views
What are the alternatives to JSTL?
Are there any alternatives to JSTL? One company I worked for 3 years ago used JSTL and custom tag libraries to separate presentation from logic. Front-end developers used EL to do complex presentation ...
8
votes
2answers
4k views
How to URL-encode a String with JSTL?
What is the best way to URL-encode a String with JSTL?
<c:url value="/user/${user.name}"/>
According to any documentation I find, this should take care of it. But it does not. It encodes ...
8
votes
6answers
6k views
Unable to read TLD “META-INF/c.tld”
there's this issue with JSTL I'm stuck with for the past couple of days. Any help is appreciated.
Tomcat 6.0.28
Eclipse: Helios
pom.xml :
<dependency>
...
8
votes
4answers
717 views
Is there a shorthand for <fmt:message key=“key” />?
It's tedious and ugly to write things like:
<input type="button" value="<fmt:message key="submitKey" />" />
And in case you want to nest the message tag in another tag's attribute it ...
8
votes
1answer
10k views
JSTL Sets and Lists - checking if item exists in a Set
I have a Java Set in my session and a variable also in the session. I need to be able to tell if that variable exists in the set.
I want to use the contains ( Object ) method that Java has for ...
8
votes
2answers
11k views
Showing the current date using JSTL formatDate tag
I am trying to show the current date in my JSP page using JSTL. below is the code I am using.
<jsp:useBean id="now" class="java.util.Date" scope="request" />
<fmt:formatDate value="${now}" ...
8
votes
8answers
13k views
How to alternate HTML table row colors using JSP?
How do I alternate HTML table row colors using JSP?
My CSS looks something like:
tr.odd {background-color: #EEDDEE}
tr.even {background-color: #EEEEDD}
I want to use <c:forEach> to iterate ...
7
votes
2answers
172 views
how to decouple data from business logic
Here is the scenario,
Let's say I have a user class like so:
public class User{
private String firstName;
private String lastName;
//...
// setter, getters
}
Then I have a class like so to ...
7
votes
3answers
2k views
String Concatenation in EL
I would like to concatenate a string within a ternary operator in EL(Expression Language).
Suppose there is a variable named value. If it's empty, I want to use some default text. Otherwise, I need ...
7
votes
1answer
553 views
Access the size of a collection in JSP/JSTL/EL
I have a List variable called services in my JSP page. I need to add some markup to the page if there's more than 1 element in the list.
What I'd like to do is...
<c:if test="${services.size() ...
7
votes
2answers
5k views
Expression Language & Eclipse warning: “items” does not support runtime expressions
i have the following JSP:
<%@ page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ page isELIgnored="false"%>
...
7
votes
2answers
9k views
Include JSTL dependency with Maven
I am using maven2, how do I add a dependency to JSTL (The JSP Standard Tag Library) ?
7
votes
4answers
3k views
Replacing EL in JSP with SpEL from Spring 3.0
Tired of old EL in JSP not being able to invoke methods on beans etc.
Can I use SpEL from Spring 3.0 in my JSP:s?
7
votes
4answers
19k views
redirect from jsf?
I am working on application with jsp, jstl and jsf for my college project, thats being said, I am as well very new to jsf.
Everything is going great so far. However, I seems to have a problem ...
7
votes
4answers
8k views
6
votes
2answers
4k views
Increment counter with jsp
This question is related to my previous question :
Jsp iterate trough object list
I want to insert counter that starts from 0 in my for loop, I've tried several combinations so far :
1.
...
6
votes
2answers
2k views
Possible to comment-out JSTL code?
If you want to temporarily comment-out a piece of JSTL code that you may re-enable later, is this possible?
Would this work?
<!--<c:out value="${someVar}"/>-->
6
votes
4answers
9k views
How do I round a number in JSTL?
I'm doing a division in a JSP and I'd like to round the result - how should I do this?
i.e.
<c:set
var="expiry"
value="${(expire.time - now.time) / (60 * 1000)}"/>
...how do I round the ...
6
votes
5answers
10k views
How to select the first element of a set with JSTL?
I managed to do it with the next code but there must be an easier way.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" ...
6
votes
2answers
1k views
Jasper in Jetty 6 throws exception for JSTL tag
I'm trying to run an application in jetty that runs fine in Tomcat 5.5. The app uses servlet 2.4 and JSP 2.0.
Jetty/Jasper is throwing this exception:
org.apache.jasper.JasperException: ...
5
votes
1answer
177 views
Binding spring:checkboxes to enumset on submit causes error
Just a heads up, I am using Java and Spring for a web app.
I have an object (objectBean) that contains an EnumSet (enumSet) of type EnumInnerObject as an attribute. I am passing this object as a ...
5
votes
2answers
340 views
where is JSTL .tld file?
I've downloaded the jstl-1.1.2.jar from a Maven repository. I expected the .jar to contain the .tld file for the tags, but it doesn't. Does anyone know where I can find it?
5
votes
1answer
3k views
JSTL fmt:message and resource bundle
I want to set the "dir" property of my table from resource bundle based on the locale.
Here is snippet:
<fmt:setBundle basename="class.path.to.resource.bundle"/>
<table ...
5
votes
2answers
353 views
Refresh adding an extra parameter
I need to refresh the webpage, but in the refresh request I want to add an extra parameter, so I have though in something like:
<c:url value="currentUrl" var="newUrl">
<c:param ...
5
votes
1answer
1k views
JSTL c:forEach causes @ViewScoped bean to invoke @PostConstruct on every request
Again i see that the @PostConstruct is firing every time even though no binding attribute is used. See this code :-
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD ...
5
votes
3answers
5k views
h:inputText return a empty string instead of NULL
i make a JSF 2.0 Application and i use many h:inputText fields to input data in my database. Some fields are not required
<h:inputText value="#{registerBean.user.phoneNumber}" id="phoneNumber" ...
5
votes
3answers
4k views
rich:datatable rowspan issue
I need to create a rich:dataTable (or even extended) with the following features:
I have a class Company having a collection of Product objects. I want to show the following table:
I still have ...
5
votes
2answers
2k views
The ultimate Java version table (J2EE, JEE, Servlet, JSP, JSTL)
I'm looking for a component break down of Java EE (or previously know as J2EE) and J2SE
E.g.
J2EE 1.3: Servlet 2.3, JSP 1.2. JSTL 1.0, ...
J2EE 1.4: Servlet 2.4, JSP 2.0, JSTL 1.1, ...
...
5
votes
2answers
8k views
How can i use JSTL variable in scriptlet?
I have to access the JSTL variable which is calculated inside the iterator.
Excerpt of code:
<c:forEach var="resultBean" items="${resultList}" varStatus="status">
card: ...
5
votes
6answers
3k views
JSP programmatically render
I need programmaticaly render JSP page. As far as I understand JSP should have some compiler. The question is can I use this compiller dirrectly without JspServlet and others? All I need is ...
5
votes
1answer
5k views
How can i check if an attribute exists with jstl?
E.g.
<c:if test="${post}">
<h3>${post.title}</h3>
</c:if>
5
votes
3answers
1k views
Custom rendering in JSP based on type of class without instanceof
How would you properly render a list of objects in jsp with differing types? Say, for example, I have to render these different objects in a specified order.
One way could be to use a common type ...
5
votes
2answers
17k views
JSTL, Beans, and method calls
I'm working on a JSP where I need to call methods on object that come from a Bean. The previous version of the page does not use JSTL and it works properly. My new version has a set up like this:
...
5
votes
1answer
777 views
Which jstl url should I reference in my jsps?
I'm getting the following error when trying to run a jsp.
I'm using Tomcat 6.0.18, and I'd like to use the latest version of jstl.
What version of jstl should I use, and which URL goes with which ...
4
votes
1answer
414 views
Nesting EL functions
I am getting EL parsing exceptions when doing this in my JSP:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="f" ...