JSTL - Core <c: choose>, <c: when>, <c: else> Tag

o <c:choose> funciona como um Java switchdeclaração em que permite escolher entre uma série de alternativas. Onde oswitch declaração tem case declarações, o <c:choose> tag tem <c:when>Tag. Assim como uma instrução switch tem odefault cláusula para especificar uma ação padrão, <c:choose> tem <c:otherwise> como a cláusula padrão.

Atributo

  • o <c:choose> tag não tem nenhum atributo.

  • o <c:when> tag tem um dos atributos listados abaixo.

  • o <c:otherwise> tag não tem nenhum atributo.

o <c:when> tag tem os seguintes atributos -

Atributo Descrição Requeridos Padrão
teste Condição para avaliar sim Nenhum

Exemplo

<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %>

<html>
   <head>
      <title><c:choose> Tag Example</title>
   </head>

   <body>
      <c:set var = "salary" scope = "session" value = "${2000*2}"/>
      <p>Your salary is : <c:out value = "${salary}"/></p>
      <c:choose>
         
         <c:when test = "${salary <= 0}">
            Salary is very low to survive.
         </c:when>
         
         <c:when test = "${salary > 1000}">
            Salary is very good.
         </c:when>
         
         <c:otherwise>
            No comment sir...
         </c:otherwise>
      </c:choose>
   
   </body>
</html>

O código acima irá gerar o seguinte resultado -

Your salary is : 4000
Salary is very good.