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

Il <c:choose> funziona come un Java switchdichiarazione in quanto consente di scegliere tra una serie di alternative. Dove ilswitch dichiarazione ha case dichiarazioni, il <c:choose> tag ha <c:when>tag. Proprio come un'istruzione switch ha l'estensionedefault clausola per specificare un'azione predefinita, <c:choose> ha <c:otherwise> come clausola predefinita.

Attributo

  • Il <c:choose> tag non ha alcun attributo.

  • Il <c:when> tag ha uno degli attributi elencati di seguito.

  • Il <c:otherwise> tag non ha alcun attributo.

Il <c:when> tag ha i seguenti attributi:

Attributo Descrizione necessario Predefinito
test Condizione da valutare Nessuna

Esempio

<%@ 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>

Il codice sopra genererà il seguente risultato:

Your salary is : 4000
Salary is very good.