Along with accessing the body of the custom tag, you can also have the attributes which can be added to the custom tag. In order to define a attribute in the custom tag we need to have the below two entries.
- we need to define a property in the Tag Handler Class and have a setter method for it.
- Define attribute tag inside the TLD File.
Lets add the attribute “message” to our custom tag, so our custom tag look like below.
<my:mytag message="Custom Attribute Message"></my:mytag>
Tag Handler Class (MyCustomTag.java)
Our MyCustomTag class act as a Tag Handler Class which extends the SimpleTagSupport class and we need to override doTag() method where we need to place the code which need to executed when our custom tag is encountered.
package com.javainterviewpoint; import java.io.IOException; import java.io.StringWriter; import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspWriter; import javax.servlet.jsp.tagext.SimpleTagSupport; public class MyCustomTag extends SimpleTagSupport { String message; public void setMessage(String message) { this.message = message; } StringWriter sw = new StringWriter(); @Override public void doTag()throws IOException,JspException { getJspBody().invoke(sw); JspWriter out = getJspContext().getOut(); out.print("<h3>"+message+" : "+sw.toString()+" : Text Appended!!!</h3>"); } }
In the above code we have a setter for message property which will be the attribute passed from our custom tag and we are getting the body text of the custom tag as well and appending all together.
TLD File (custom.tld)
Our TLD file should be placed in the location “<<Project Name>>/WebContent/WEB-INF/custom.tld” and our file should always end with .tld extension. we have added a new tag <attribute> in our tld file whose name will be used in the custom tag(JSP page).
<taglib> <tlib-version>1.0</tlib-version> <jsp-version>2.0</jsp-version> <short-name>My Custom Tag</short-name> <tag> <name>mytag</name> <tag-class>com.javainterviewpoint.MyCustomTag</tag-class> <body-content>scriptless</body-content> <attribute> <name>message</name> </attribute> </tag> </taglib>
JSP Page
We have created our custom tag mytag which we will be using here. Using the taglib directive we need to add the uri of our tld file and prefix to call our tag. So now we can call our custom tag by calling <my:mytag> . We have added the attribute “message” to our custom tag.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@taglib uri="/WEB-INF/custom.tld" prefix="my" %> <!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>Insert title here</title> </head> <body> <my:mytag message="Custom Attribute Message">Body of Custom Tag</my:mytag> </body> </html>
Output
Once we run the above jsp page we will get the below output
Custom Attribute Message : Body of Custom Tag : Text Appended!!!
Leave a Reply