Programming Tutorials

The Tag Life Cycle with Attributes in JSP

By: Fazal in JSP Tutorials on 2007-10-06  

Introducing attributes into a custom tag does change the tag life cycle slightly because before the functionality of the tag can be executed (the doTag() method in the case of simple tags), the attributes must be passed to the tag handler so that they can be used by the tag. The way that the JSP specification allows this is through properties and setter methods of the tag handler class. A tag handler must have a property and a setter method for every attribute that it supports.

Note The necessity for the tag handler to have a property and setter method for every supported attribute is a requirement of previous versions of the JSP specification. But with the introduction of dynamic attributes, this is not strictly true anymore. 

These setter methods must conform to the standard JavaBeans naming convention, meaning that to support an attribute called name of type String, the tag handler must declare a setter method with the following signature:

public void setName(String s)

In this example, at request time, the value of the name attribute will be passed to the setName() method. With this in mind, you can now see how supporting attributes alters the tag life cycle. As an example, consider the following custom tag usage:

<prefix:myTag attribute1="abc" attributeN="def"/>

Here, the tag has two attributes that are being specified. By looking at the tag life cycle in Figure below, you can see what happens behind the scenes.\

The life cycle of a simple tag with parameters

As this diagram shows, the setter methods for the attributes are called before the doTag() method is executed, and in the same order that the attributes appear within the usage of the tag, from left to right. When it comes to implementing attributes in tag handler classes, attribute setter methods typically store a copy of the attribute away in an instance variable, ready for the doTag() method to use.






Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in JSP )

Latest Articles (in JSP)