Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to print decremental numbers like:

<c:forEach var="i" begin="10" end="0" step="-1">
    ... ${i} ...
</c:forEach>

then I got jsp exception:

javax.servlet.jsp.JspTagException: 'step' <= 0
    javax.servlet.jsp.jstl.core.LoopTagSupport.validateStep(LoopTagSupport.java:459)
    org.apache.taglibs.standard.tag.rt.core.ForEachTag.setStep(ForEachTag.java:60)
    ....

but this answer says it is possible to loop in both ways:

http://stackoverflow.com/questions/712046/jstl-foreach-reverse-order

What's wrong with me?

share|improve this question
That other question was really about how to loop over a Collection backwards. I corrected my answer so the other part is also correct. Nothing is wrong with you. My answer had a mistake. – Eddie Feb 8 at 4:43

1 Answer

up vote 13 down vote accepted

I am not sure how the answerer of the other question got it to work, but I can't get it to work here with the reference JSTL implementation.

Anyway, you can achieve the requirement with following:

<c:forEach var="i" begin="0" end="10" step="1">
    ... ${10 - i} ...
</c:forEach>

Or if you'd like to avoid duplication of 10:

<c:forEach var="i" begin="0" end="10" step="1" varStatus="loop">
    ... ${loop.end - i + loop.begin} ...
</c:forEach>
share|improve this answer
2  
Right, the spec states: If specified, step must be >= 1 – kschneid Oct 7 '10 at 17:14
that's good.I dont think like this. – Günay Gültekin Nov 15 '12 at 10:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.