I need to get the name of requester tag at doStartTag function I have this Custom tag in .tld
<tag>
<name>Resource</name>
<tag-class>Mirnint.Interface.Tag.MNIT_Resources</tag-class>
<body-content>JSP</body-content>
<attribute>
<name>Style</name>
<required>false</required>
</attribute>
<attribute>
<name>JavaScript</name>
<required>false</required>
</attribute>
</tag>
and in JSP :-
<%@ taglib uri="/webapp/Min" prefix="Min"%>
<html>
<head>
<Min:Resource/>
</head>
and java class is :-
@Override
public int doStartTag() throws JspException {
//Here i need to print the name of caller tag in this example it should be ("Resource")...
System.out.println(**The Name of Tag**);
}
Thou output Should be
Resource
Thanks for help...
You need to create a getter/setter corresponding to name; then your code would be like: