3.SQL Tags
4.XML Tags
5.JSTL Tag Reference Sample Application
6.Download Eclipse project/WAR file
The following sections discuss in details the four types of tag libraries along with examples which are applicable. Please click on each tag to access information about tag usage and working examples.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
To use core tags in the JSP specify the following directive at the beginning of the JSP.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
|
|
|
|
|
|
|
|
|
To use formatting tags in the JSP specify the following directive at the beginning of the JSP.
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
To use the SQL tags in the JSP specify the following directive at the beginning of the JSP.
<%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
|
|
|
|
|
|
|
|
|
|
|
To use the XML tags in the JSP specify the following directive at the beginning of the JSP.
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
The sample Eclipse project contains the working examples for all the four types of JSTL tags. The Eclipse project structure is shown below:
The project’s starting point is /JSTL-Reference/jstl-tag-reference.jsp. If you’ve deployed this web application in your local Tomcat, the URL to access the JSTL Reference web application is:
http://localhost:8080/JSTL-Tag-Reference/jstl-tag-reference.jsp
The Employee.sql contains the database table script used in this project.
Once you deployed the WAR file to the server, please click on respective tag type to access the full table of contents for each tag type selected. The four following screen captures display each tag type access pages and their respective tags.
[Please ensure the database server is up and running when accessing JSTL SQL tags].
JSTL XML Tags - http://localhost:8080/JSTL-Tag-Reference/tag-types/xml-tag-reference.jsp
Please download Eclipse project and deployable .war file in the attachments section.