Tagged Questions

0
votes
1answer
6 views

JSTL: core:redirect gives the error “Unknown tag”

I am taking my first steps with Spring and am doing a tutorial. I am supposed to be redirecting to a page that displays some content using < core:redirect url="/portfolio. …
0
votes
1answer
12 views

combine x-taglib with c-taglib on <x:set> and <c-foreach>

can is use a x-taglib var in a c-foreach like: <x:set var="logrows" select="$doc/properties/entry[@key='foo.bar']"></x:set> <c:forEach items="${bar.foo}" var="log …
0
votes
1answer
33 views

Can i break up a jsp foreach loop with stripes layouts

Say I have the following for each in a stripes layout definition <c:foreach items="${foo}" var="bar" > <s:layout-component name="whatever" /> </c:foreach> …
0
votes
1answer
32 views

Sending & in query String

From first.jsp I am sending some parameters to result.jsp as - <a href="result.jsp?itemId=${itemId}&itemName=${item.itemName}&itemCode=${item.itemCode}')">Show Items …
1
vote
1answer
430 views

JSTL: check if property doesn’t exist

I'm getting blocked on a jsp page and our 1 java engineer isn't able to help now. There is a template called "module-review.jsp" that is loaded in 2 instances, via a normal page …
0
votes
3answers
66 views

How to check for Double.NaN in JSP with JSTL tags?

How to check for Double.NaN in JSP with JSTL tags?
0
votes
3answers
192 views

JSTL and authenticated web services

Can I access an authenticated web service using JSTL? (Form-based authentication) If I can't do it using JSTL, is there any other way I do it from a JSP? Maybe I need to give a …
1
vote
6answers
88 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 …
0
votes
4answers
114 views

Regular expression to match empty HTML tags that may contain embedded JSTL?

I'm trying to construct a regular expression to look for empty html tags that may have embedded JSTL. I'm using Perl for my matching. So far I can match any empty html tag that d …
1
vote
3answers
45 views

How to access bean attribute in JSP?

How can we access the bean attribute in JSP? I tried <core:forEach var="header" items="${command.headerList}" > <td><core:out value="${header.columnName}"/>< …
0
votes
1answer
454 views

trimming a string in a JSTL expression

I have the following line in a JSP page: <c:if test="${postAuditBean.postAudit.authority == authority.value}"> I would like change this comparison to first trim leading an …
2
votes
9answers
5k 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, s …
0
votes
1answer
235 views

How can I check if a resource bundle key does not exist using JSTL tags?

I have a resource file that will have some optional keys. If the optional resource key is not present, I set a default instead. It appears that there is no easy way to determine if …
0
votes
4answers
255 views

How do I round a number in JSTL?

Hi, 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)}"/&gt …
-1
votes
1answer
205 views

Spring SimpleFormController - Including Search Form In Success View

Teaching myself a lot about Spring this week...maybe someone else will answer this before I can :) I have a Spring form where I would like to reuse the search page to include the …

1 2 3 4 5 11 next
15 30 50 per page