- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Can we test XPath expression in JSP?
The <x:if> tag evaluates a test XPath expression and if it is true, it processes its body. If the test condition is false, the body is ignored.
Attribute
The <x:if> tag has the following attributes −
Attribute | Description | Required | Default |
---|---|---|---|
select | The XPath expression to be evaluated | Yes | None |
var | Name of the variable to store the condition's result | No | None |
scope | Scope of the variable specified in the var attribute | No | Page |
Example
Following is an example that show the use of the <x:if> tag −
<%@ 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:if 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"/> <x:if select = "$output//book"> Document has at least one <book> element. </x:if> <br /> <x:if select = "$output/books[1]/book/price > 100"> Book prices are very high </x:if> </body> </html>
Let us now access the above JSP, the following result will be displayed −
Books Info: Document has at least one <book> element. Book prices are very high
- Related Articles
- Can we have a switch statement in JSP for XPath expression?
- How to print XPath Expression result in JSP?
- How to use a value of XPath expression result in JSP in a variable?
- How can we test rust?
- What are JSP declarations? In how many ways we can write JSP declarations?
- How can we test C# Asp.Net WebAPI?
- How to write a JSP Expression?
- Can we write code in try/catch block in JSP as well?
- How can we write a multiline lambda expression in Java?
- If nuts contain fats, how can we test that?
- How can we pass lambda expression in a method in Java?
- How to print a date using JSP Expression?
- How can we write Callable as a lambda expression in Java?
- How to print result of a java expression in JSP?
- How to verify an XPath expression in Chrome Developers tool or Firefox's Firebug?

Advertisements