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>
1.4m articles
1.4m replys
5 comments
57.0k users