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.

learn more… | top users | synonyms

0
votes
1answer
20 views

Using c:forEach tag with Google App Engine

I am trying to populate an HTML table with values from my entity "Log." Query query = new Query("Log", logkey) List<Entity> logs = ...
0
votes
0answers
20 views

Getting the URL client entered in JSP using JSTL

I am trying to construct the URL the client enters inside a JSP page using JSTL. I have gone through several posts here suggesting the usage of ${pageContext.request.localName}, ...
-1
votes
0answers
13 views

Assign javascript variable to jstl

I have javascript function and variable a in that. I am not able to get value on alert. <script> var a= "abc"; <c:set var="p" value="${a}"/> alert('${p}'); </script> Please ...
0
votes
1answer
16 views

How to mix href and text in jstl?

I have a string which contains a multiple href links. To output a single href using jstl I can use : <a href="<c:url value="www.google.com"/>">Google</a> But what if there is ...
0
votes
1answer
66 views

Custom JSTL function always returns false

This snippet loops through a global list of testContainerCommand.testContainerLocationList. For each location, it will see if it's present in the main object's location list ...
0
votes
0answers
18 views

Variables transmission between a portlet and the JSP file (and vice versa with a form)

I want to understand the differences between some ways to "send" a variable from a portlet instance to the JSP and the inverse (from a form into a JSP to the portlet). Into the portlet side, I "save" ...
0
votes
1answer
13 views

Compare if BigDecimal is equal to zero in jsp

I am comparing a big decimal value in jsp like this, <fmt:formatNumber value="${totalAmount}" pattern="0.00" var="totalAmountApplied" /> <c:if test="${totalAmountApplied != '0'}" > but ...
1
vote
4answers
43 views

c:forEach loop using direct index versus attributes var and varStatus?

While working on jstl tags I came across foreach loop. For 'foreach' loop jstl provides the two attributes var and varstatus. As far as I understand they can be used to directly play on index ...
0
votes
1answer
31 views

Dispatching error, Embedded Tomcat

I have a Servlet and a JSP file and I want to pass a parameter from my JSP to my Servlet. But, an exception still there... Here is my code : //Servlet Affichage.java import java.io.IOException; ...
0
votes
1answer
24 views

jstl, how to fill current request with map

I have a map which contain request parameters and their value, which will be used later on the jsp page. I'm usinng jsp page inclusion later and I don't know what exact params would I use How I ...
0
votes
0answers
29 views

How can I call keySet() method of HashMap in jstl?

I am passing a HashMap to my jsp. There I need to fetch the key values from the map, in jstl. something like <c:set var="set" value="${fn:valueMap.keySet()}"></c:set> and get ...
0
votes
1answer
15 views

Error in inserting data in bean

I am trying to insert data in a table Order having following fields: id PK, cid FK, pid FK, I am trying to insert data in this order bean. Here is my JSP code: <form:form> ...
4
votes
3answers
86 views

Passing variable from servlet to JSP

I've seen other questions similar to this asked but none of them have helped me solve my problem. Basically, I'm trying to pass a variable from a servlet to a JSP. The servlet code. package ...
0
votes
1answer
20 views

Neither BindingResult nor plain target object for bean name 'emlpoyee' available as request attribute

I do know, that similar question was raised here several times, however all those posts didn't help me and I still fail to fix it. Here is part of my controller: @RequestMapping("/contacts") ...
0
votes
0answers
36 views

displaytag ajax dynamic column list

I am using displaytag in ajax form.... but its difficult to load dynamic column list with <c:forEach var="cl" items="${List}"> <display:column property="${cl.property}" ...
0
votes
1answer
21 views

<c:choose> does not set the expected value based on <ui:repeat var>

I have written a code like this: <ui:repeat var="fstDayWk" value="#{calendarBean.date}"> <c:choose> <c:when test="#{fstDayWk == 'Sun'}"> ...
3
votes
3answers
44 views

How to handle complexity in jsps

This may be more of a rant than a question that can actually be answered. I'm not sure yet. I suspect it may be a situation that lots of people encounter though so hopefully it's a useful question. ...
0
votes
0answers
24 views

Implementing jstl.jar in eclipse

I have a dynamic web application project in eclipse and I'm trying to use jstl in my jsp. I've added: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> on the beginning of my ...
0
votes
0answers
36 views

Dynamic CSS class's attribute value from a JSTL set counter

I want retrieve the name of class I get from this code: <c:set var="counter" value="0"/> <c:forEach ...> <c:forEach ...> <c:set var="counter" value="${counter + ...
0
votes
0answers
18 views

How to compare xml value to user defined value in jsp

I am making a program which will take a text data from user. now, i want to check that this given data is present in my xml file or not. like: <c:import url="dict.xml" var="url"/> ...
0
votes
2answers
37 views

passing JSTL to javascript

I want to pass JSTL from my onclick event to javascript. My onclick looks like this, onclick="cancelButtonAction(<c:out value='${loop.index}'/>, <c:out value="${iList.inStr}"/>);" and ...
1
vote
0answers
28 views

Can an Iframe have XSS vulnerabilities?

Normally, after I finish my coding, I always check for security vulnerabilities (mainly XSS) using veracode. Most of the times in my JSP, if I have a code like: <%=bean.getValues()%> it's ...
-1
votes
1answer
34 views

Html:Select not getting disabled

I am trying to get a select drop down to be disabled if a certain String attribute is being passed in on the params... <html:select value="${params.bookLog_bookSubtype_bookSubtypeId}" size="1" ...
1
vote
1answer
50 views

jsp : set an attribute of an element based on condition

<jsp:element name="input"> <jsp:attribute name="type">radio</jsp:attribute> <jsp:attribute name="id">${status.index}${loop.index}</jsp:attribute> ...
0
votes
1answer
41 views

set selected text of combobox in javascript with some JSTL variable

i would like to set the selected Text (not value) of a combobox at loading page if a request variable is set. My attribute name is 'modified' so i try something like this : javascript : function ...
-2
votes
1answer
90 views

Struts 2: how set a property value of a bean of an action using tags?

I have a bean inside my action (here the code) public class FPFController extends ActionSupport{ private FPFParameters fPFParameters; public FPFParameters getFPFParameters(){ return ...
-1
votes
0answers
19 views

JSTL forEach: changing index dynamically

<c:forEach var="i" begin="1" end="10"> <c:out value="${i}" /> <%-- setting i on the fly to change the number of loop? --%> <c:set var="i" value="${i + 2}"> ...
-1
votes
1answer
54 views

Designing a Calculator web aplication in Java [duplicate]

I am making a Java web application called Calculator. I'm using JSP, but I am not sure how to move forward. Actually the problem is, I have designed a calculator UI and I want to display the number ...
0
votes
1answer
46 views

Servlet Response not updating the JSP foreach iterator

I am calling a servlet on ready like, $(document).ready(function(){ $.ajax({ type: "GET", url: "UserInfoDisplay" }); ...
0
votes
0answers
18 views

how to use jstl fmt:message with ajax?

How can I use fmt:message with dynamic messages retrieved through Ajax? Is there something better than: paste all the fmt:message strings in the page and put them hidden, then, based on the servlet ...
1
vote
0answers
28 views

spring social twitter jsp cannot read List <Tweet>

I'm using Spring Social Twitter to fetch search result from twitter REST APIs. I am getting the search result but while displaying it in JSP, it does not work. Controller: @RequestMapping(value = ...
0
votes
1answer
34 views

Read properties file from jar using jstl setBundle on JSP

All my web app are using a comum JAR file. I'd like to get my framework version, that is into a .properties file, and show it on footer page. I want to read this properties using jstl setBundle tag. ...
0
votes
2answers
35 views

Process data with JSTL

I'm brand new to JSTL and have a question because I need to process some data before displaying it with HTML. Here's my data returned from server: <participantMeetingList> ...
0
votes
0answers
43 views

print and restrict a checkbox list with a combobox

I code my html page with JSTL what i want to achieve : combobox {value1; value2; ...} checkbox {value_check1; value_check2; ..} values from the checkbox come from a Database through a dao ...
0
votes
2answers
25 views

Set id attribute of element to jstl variable

<input type = "radio" name = "skillLevel[${status.index}].skillLevelId" id = "skillLevel[${status.index}].skillLevelId" value = "3"/> For input name attribute the value ...
0
votes
2answers
30 views

JSTL cannot receive data from server

I am working with SpringMVC3.2 and JSP and I am trying to display user information. But I have problem to display it on JSP page. Here are my controller and JSP page: @Controller ...
0
votes
1answer
39 views

Javascript file not accessing jstl

I have my jstl code inside a javascript file that i am including inside my jsp page. The problem I have is that when i write my jstl code inside a script inside the jsp page it is working fine. but ...
0
votes
3answers
83 views

JSTL formatNumber for JSP custom pattern independent from language

I'm developing a little app with JSP and I need to convert the European app to an international one (compatible with US format..etc). I've founded the pattern option for tag formatNumber ...
2
votes
0answers
39 views

Attributes naming convention resulting in long EL expressions in JSP Page

I'm writing a lot of JSP pages for different views. Thoses JSP retrieve request scope attributes which have very long names to prevent overlapping. An example is: ...
0
votes
1answer
12 views

Tomcat 6.0.37 not processing jstl tag statements

I have a simple test page with the following statement but it appears that the ${} tags are not being processed by Tomcat and i get no errors in the log. <%@ taglib ...
0
votes
0answers
51 views

Ajax call response from servlet to set a value for a variable

I have the following code in jsp page <c:choose> <c:when test="${action == 'action1'}"> Show me Part 1 </c:when> <c:when test="${action == 'action2'}"> ...
1
vote
3answers
129 views

Is it a good practice to use JSTL with Struts2 or with Spring

I've seen JSTL have many functions like fn:contains() fn:containsIgnoreCase() fn:endsWith() fn:escapeXml() fn:indexOf() fn:join() fn:length() fn:replace() fn:split() ...
0
votes
2answers
61 views

What value is submitted by struts checkbox tag when checkbox is unselected

I ran into this scenario. class MyForm extends IdSelectionForm { private Boolean approveIt = true; ..... } my jstl form consists of <html:checkbox property="approveIt" styleId="style1" ...
0
votes
0answers
23 views

newRow.insertCell of Javascript and JSTL

I want to add a combobox written in JSTL to a table, so i create this function: function AddRow(){ var newRow = document.getElementById('listuser').insertRow(-1); var newCell = ...
0
votes
1answer
22 views

Loop into a List in a Map using JSTL

Say I have a map like below Map<String, Map<List<String>, Map<String,List<String>>> mapData= testMap(); request.setAttribute("mapData", mapData); Now I want to access ...
0
votes
0answers
39 views

confusion about <c:if test=“”>

I'm having trouble with JSP's <c:if test="">. <c:if test="true"> and <c:if test="false"> work as expected. But the following snippet doesn't: <p:dataTable ...
0
votes
1answer
54 views

How to get requestURI by using jstl in spring mvc project?

I google a lot and get a answer: <c:out value="${pageContext.request.requestURI}" /> But I get /myapp/WEB-INF/views/index.jsp I want to get /myapp/index How can I do that? My project is ...
-1
votes
0answers
107 views

How to read property file in JSP using JSTL Core fmt stored in different folder?

I want to read Properties file which is stored in different drive not in src folder. How can i do that because Properties file use Context to map but how can i get keys from folder saved in different ...
0
votes
1answer
46 views

JSTL Tags committing HTTP Response

I have a JSP that uses JSTL heavily (c:out, c:if, c:choose, the works). I am running into an interesting condition where during mid-for loop in the JSP my HTTP Response flips from being NOT committed ...
2
votes
1answer
80 views

Format a date and display it using JSTL and EL

How do I format and display a Date object in a JSP, most preferably using JSTL and EL but any other solution is welcome? I can not change the bean object. I have the following class: import ...

1 2 3 4 5 47