1,开发一个标签。实现javax.servlet.jsp.tagext.Tag..主要是doStartTag和doEndTag方法!
2,在WEB-INF目录下新建一个目录,如tlds.在其下新建一个mytag.tld。
描述如下:
<short-name>examples</short-name>
<uri>/demotag</uri>
<description>
</description>
<tag>
<description> </description>
<name>hello_init</name>
<tag-class>路径</tag-class>
<body-content>empty</body-content>
</tag>
3,在web.xml中指定对其的引用。
<taglib>
<taglib-uri>/demotag</taglib-uri>
<taglib-location>/WEB-INF/tlds/mytag.tld</taglib-location>