8.4.Write JSP code using several standard tags.
In the previous sections we have reviewed the uses of standard tags. There is the option of defining custom tags, when JSTL and standard actions are not enough.
-Using tag files ( implement tag functionality in a JSP)
-Using tag handlers (implement tag functionality in java class)
-Simple
-Classic (previous to JSP2.0)
Example of tagFile:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ tag language="java" pageEncoding="ISO-8859-1"%> | |
<input type="submit" value="ACCEPT"/> |
Example of simple tag handler:
- Class that extends SimpleTagSupport and override doTag() method:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package example; | |
import javax.servlet.jsp.tagext.SimpleTagSupport; | |
import java.io.IOException; | |
import javax.servlet.jsp.JspException; | |
public class SimpleTagExample extends SimpleTagSupport { | |
public void doTag() throws JspException, IOException{ | |
getJspBody().invoke(null); | |
} | |
} |
- Create TLD for the tag:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="ISO-8859-1" ?> | |
<taglib> | |
<tlib-version>1.2</tlib-version> | |
<jsp-version>2.0</jsp-version> | |
<shortname>x</shortname> | |
<uri>simpleTag</uri> | |
<tag> | |
<name>addText</name> | |
<tag-class>example.SimpleTagExample</tag-class> | |
<body-content>scriptless</body-content> | |
</tag> | |
</taglib> |
- Use the tags in a JSP:
see the tag file in directive: <%@ taglib prefix="myTag" tagdir="/WEB-INF/tags" %>
and tag handler in directive: <%@ taglib prefix="simple" uri="simpleTag" %>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" | |
pageEncoding="ISO-8859-1"%> | |
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %> | |
<%@ taglib prefix="myTag" tagdir="/WEB-INF/tags" %> | |
<%@ taglib prefix="simple" uri="simpleTag" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>Fruit selection</title> | |
<style> | |
p { | |
border:1px solid grey; | |
padding:10px; | |
margin:30px; | |
} | |
</style> | |
</head> | |
<body> | |
<p> | |
Please, select one fruit from the list | |
<select id="list"> | |
<c:forEach items="${fruitList}" var="fruit"> | |
<option value="${fruit}"> | |
${fruit} | |
</option> | |
</c:forEach> | |
</select> | |
<myTag:ExampleTag/> | |
<simple:addText> | |
</br>Only season fruit | |
<input type="checkbox" value="season"/> | |
</simple:addText> | |
</p> | |
</body> | |
</html> |
Results:
In the example the tag file includes a button and the tag handler adds line with text and a checkbox.
8.5.List capabilities of JSTL tags.
- JSTL encapsulates, as simple tags, core functionality common to many JSP applications. A single tag and can be used on multiple JSP containers.
- JSTL provides support for core iteration and control-flow features, text inclusion, internationalizaton-capable formatting tags, and XML-manipulation tags.
- JSTL extensibility mechanisms: a framework for integrating custom tags with JSTL tags.
OCEJWCD (SCWCD) - 1Z0-899 - Web Component Developer Certification