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.

Is there an if-else tag available in JSTL?

share|improve this question

2 Answers

up vote 131 down vote accepted

Yes, but it's clunky as hell, e.g.

<c:choose>
  <c:when test="${condition1}">
    ...
  </c:when>
  <c:when test="${condition2}">
    ...
  </c:when>
  <c:otherwise>
    ...
  </c:otherwise>
</c:choose>
share|improve this answer
1  
Its working. Thanks. – Srinivasan Jan 4 '11 at 9:08
2  
Aside from the wrapper tag (choose), I don't see how this is any more verbose than if/elseif/else would be. One wrapper tag hardly constitutes 'clunky as hell', no? – Steven Benitez Jan 8 '11 at 18:25
5  
@Steven: It's the XML nature of it. There's more characters in the boilerplate than there is in the actual logic. – skaffman Jan 8 '11 at 18:40
Ah, ok. The same could be set for <c:if/> then, too. – Steven Benitez Jan 8 '11 at 19:24
7  
I know I'm a bit late to the party, but <c:otherwise> seems a little verbose, eh? – andronikus Oct 27 '11 at 13:29
show 1 more comment

For simple if-else you can use ternary operator like this

<c:set value="34" var="num"/>
<c:out value="${num % 2 eq 0 ? 'even': 'odd'}"/>
share|improve this answer

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.