- 7.1 Tag Library Components
- 7.2 Example: Simple Prime Tag
- 7.3 Assigning Attributes to Tags
- 7.4 Example: Prime Tag with Variable Length
- 7.5 Including Tag Body in the Tag Output
- 7.6 Example: Heading Tag
- 7.7 Example: Debug Tag
- 7.8 Creating Tag Files
- 7.9 Example: Simple Prime Tag Using Tag Files
- 7.10 Example: Prime Tag with Variable Length Using Tag Files
- 7.11 Example: Heading Tag Using Tag Files
7.4 Example: Prime Tag with Variable Length
In this example, we modify the previous prime number example, shown in Section 7.2 (Example: Simple Prime Tag), to provide an attribute for specifying the length of the prime number. Listing 7.8 shows the PrimeTag class, a subclass of SimplePrimeTag that adds support for the length attribute. This change is achieved by supplying an additional method, setLength. When this method is called, it attempts to convert its String argument into an int and store it in an instance variable length. If it fails, the originally initialized value for the instance variable length is used.
The TLD, shown in Listing 7.9, declares the optional attribute length. It is this declaration that tells the container to call the setLength method if the attribute length appears in the tag when it's used in the JSP page.
The JSP page, shown in Listing 7.10, declares the tag library with the taglib directive as before. However, now we are able to specify how long our prime number should be. If we omit the length attribute, the prime tag defaults to 50. Figure 7-2 shows the result of this page.
Listing 7.8. PrimeTag.java
package coreservlets.tags; /** PrimeTag outputs a random prime number * to the JSP page. The length of the prime number is * specified by the length attribute supplied by the JSP * page. If not supplied, it defaults to 50. */ public class PrimeTag extends SimplePrimeTag { public void setLength(String length) { try { this.length = Integer.parseInt(length); } catch(NumberFormatException nfe) { // Do nothing as length is already set to 50 } } }
Listing 7.9. Excerpt from csajsp-taglib.tld
<?xml version="1.0" encoding="UTF-8" ?> <taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" version="2.0"> <tlib-version>1.0</tlib-version> <short-name>csajsp-taglib</short-name> <tag> <description>Outputs an N-digit prime</description> <name>prime</name> <tag-class>coreservlets.tags.PrimeTag</tag-class> <body-content>empty</body-content> <attribute> <description>N (prime number length)</description> <name>length</name> <required>false</required> </attribute> </tag> </taglib>
Listing 7.10. primes-1.jsp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Some N-Digit Primes</TITLE> <LINK REL=STYLESHEET HREF="JSP-Styles.css" TYPE="text/css"> </HEAD> <BODY> <H1>Some N-Digit Primes</H1> <%@ taglib uri="/WEB-INF/tlds/csajsp-taglib.tld" prefix="csajsp" %> <UL> <LI>20-digit: <csajsp:prime length="20" /> <LI>40-digit: <csajsp:prime length="40" /> <LI>80-digit: <csajsp:prime length="80" /> <LI>Default (50-digit): <csajsp:prime /> </UL> </BODY></HTML>

Figure 7-2 Result of primes-1.jsp.