Is there an if-else tag available in JSTL?
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>
2.1m questions
2.1m answers
60 comments
57.0k users