JSP - Dados XML
Quando você envia os dados XML via HTTP, faz sentido usar JSP para lidar com documentos XML de entrada e saída; por exemplo, documentos RSS. Como um documento XML é apenas um monte de texto, criar um por meio de um JSP é muito mais fácil do que criar um documento HTML.
Enviando XML de um JSP
Você pode enviar o conteúdo XML usando JSPs da mesma forma que envia HTML. A única diferença é que você deve definir o tipo de conteúdo de sua página como text / xml. Para definir o tipo de conteúdo, use o<%@page%> tag, assim -
<%@ page contentType = "text/xml" %>
O exemplo a seguir mostrará como enviar conteúdo XML para o navegador -
<%@ page contentType = "text/xml" %>
<books>
<book>
<name>Padam History</name>
<author>ZARA</author>
<price>100</price>
</book>
</books>
Acesse o XML acima usando diferentes navegadores para ver a apresentação da árvore de documentos do XML acima.
Processando XML em JSP
Antes de prosseguir com o processamento de XML usando JSP, você precisará copiar as duas seguintes bibliotecas relacionadas a XML e XPath em seu <Tomcat Installation Directory>\lib -
XercesImpl.jar - Baixe-o de https://www.apache.org/dist/xerces/j/
xalan.jar - Baixe-o de https://xml.apache.org/xalan-j/index.html
Vamos colocar o seguinte conteúdo no arquivo books.xml -
<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>
Tente o seguinte main.jsp, mantendo no mesmo diretório -
<%@ 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:parse Tags</title>
</head>
<body>
<h3>Books Info:</h3>
<c:import var = "bookInfo" url="http://localhost:8080/books.xml"/>
<x:parse xml = "${bookInfo}" 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>
Acesse o JSP acima usando http://localhost:8080/main.jsp, o seguinte resultado será exibido -
Books Info:
The title of the first book is:Padam History
The price of the second book: 2000
Formatando XML com JSP
Considere a seguinte folha de estilo XSLT style.xsl -
<?xml version = "1.0"?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
version = "1.0">
<xsl:output method = "html" indent = "yes"/>
<xsl:template match = "/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match = "books">
<table border = "1" width = "100%">
<xsl:for-each select = "book">
<tr>
<td>
<i><xsl:value-of select = "name"/></i>
</td>
<td>
<xsl:value-of select = "author"/>
</td>
<td>
<xsl:value-of select = "price"/>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
Agora considere o seguinte arquivo JSP -
<%@ 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:transform 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>
<c:import url = "http://localhost:8080/style.xsl" var = "xslt"/>
<x:transform xml = "${xmltext}" xslt = "${xslt}"/>
</body>
</html>
O seguinte resultado será exibido -
Books Info:
Padam History
ZARA
100
Great Mistry
NUHA
2000
Para saber mais sobre o processamento de XML usando JSTL, você pode verificar JSP Standard Tag Library .