JSTL - Balise XML <x: out>

le <x:out>La balise affiche le résultat d'une expression XPath. Il fonctionne de la même manière que<%= %> Syntaxe JSP.

Attribut

le <x:out> tag a les attributs suivants -

Attribut La description Obligatoire Défaut
sélectionner Expression XPath à évaluer sous forme de chaîne, souvent à l'aide de variables XPath Oui Aucun
escapeXml Vrai si la balise doit contenir des caractères XML spéciaux Non vrai

Exemple

Prenons un exemple qui couvrira les balises (a) <x:out>, (b) <x:parse>.

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

<html>
   <head>
      <title>JSTL x:out Tags</title>
   </head>

   <body>
      <h3>Books Info:</h3>

      <c:set var = "xmltext">
         <books>
            <book>
               <name>Padam History</name>
               <author>ZARA</author>
               <price>100</price>
            </book>
            
            <book>
               <name>Great Mistry</name>
               <author>NUHA</author>
               <price>2000</price>
            </book>
         </books>
      </c:set>

      <x:parse xml = "${xmltext}" var = "output"/>
      <b>The title of the first book is</b>: 
      <x:out select = "$output/books/book[1]/name" />
      <br>
      
      <b>The price of the second book</b>: 
      <x:out select = "$output/books/book[2]/price" />
   
   </body>
</html>

Le code ci-dessus produira le résultat suivant -

Books Info:

The title of the first book is: Padam History The price of the second book: 2000