带标签体的标签在.tld文件中的定义:
<tag>
<name>loop</name>
<tag-class>ch10.BodyTag</tag-class>
<body-content>jsp</body-content>
<attribute>
<name>counts</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
不带标签体的标签在.tld文件中的定义:
<tag>
<name>simp</name>
<tag-class>ch10.Welcome_SimpleTag</tag-class>
<body-content>empty</body-content>
</tag>
在web.xml中的定义:
<taglib>
<taglib-uri>/demotag</taglib-uri>
<taglib-location>/WEB-INF/mytag.tld</taglib-location>
</taglib>
导入声明:
<%@ taglib prefix="mt" uri="/demotag"%>