Jstl Xml Out Tag
π
2026-06-18 | π JSTL
# Tag
[JSP Standard Tag Library](#)
The tag displays the result of an XPath expression, similar to the functionality of .
### Syntax Format
<x:out select="" escapeXml=""/>
### Attributes
The tag has the following attributes:
| **Attribute** | **Description** | **Required** | **Default Value** |
| --- | --- | --- | --- |
| select | The XPath expression to evaluate, typically using XPath variables | Yes | None |
| escapeXml | Whether to ignore XML special characters | No | true |
* * *
## Example Demonstration
The following example uses the and tags:
JSTL x:out TagBooks Info:
Padam History ZARA 100 Great Mistry NUHA 2000 The title of the first book is:
The price of the second book:
The output is as follows:
BOOKS INFO:The title of the first book is: Padam History The price of the second book: 2000
* * JSP Standard Tag Library](#)