Top "Jstl" 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.

Selected value for JSP drop down using JSTL

I have SortedMap in Servlet to populate drop down values in JSP and I have the following code SortedMap<…

jsp drop-down-menu jstl retain
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 …

java jsp jstl
EL access a map value by Integer key

I have a Map keyed by Integer. Using EL, how can I access a value by its key? Map<…

java jsp jstl el
Where can I download JSTL jar

Does anyone know because all the places I've tried seem to timeout!

java jsp jakarta-ee jstl
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

I am using JDK 1.7, Apache Tomcat 7.0.23 and I have placed JSTL core library(1.2) and STANDARD jar in WEB_INF lib …

apache jakarta-ee jstl tomcat7
How to access at request attributes in JSP?

Currently I use: <% final String message = (String) request.getAttribute ("Error_Message"); %> and then <%= message %> However I …

jsp jstl el
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.

java jsp jsf jstl el
java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.Config

When I am run my application after entering the URL, this exception is coming.I am using Eclipse and Tomcat7.0.35. …

jsf jstl classnotfoundexception
Set HTML dropdown selected option using JSTL

In the same context i have another query <select multiple="multiple" name="prodSKUs"> <c:forEach items="${productSubCategoryList}" …

java html jsp jstl el
Correct syntax to compare values in JSTL <c:if test="${values.type}=='object'">

I have an if statement that I am trying to perform with JSTL. My code is below (the variables values …

jsp if-statement jstl el