Search code examples
jspjstl

How to use if-else option in JSTL


Is there an if-else tag available in JSTL?


Solution

  • 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>