1、首先自定義標簽類
a、自定義標簽類應繼承父類javax.servlet.jsp.tagext.SimpleTagSupport
b、如果標簽類包含屬性,每個屬性必須有getter、setter方法
c、重寫doTag方法
2、建立TLD文件
a、復制tomcat安裝目錄下
b、修改tld文件,如
[html]
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description>A tag library exercising SimpleTag handlers.</description>
<tlib-version>1.0</tlib-version>
<short-name>mytaglib.tld</short-name>
<!-- 定義標簽庫URL -->
<uri>http://tomcat.apache.org/jsp2-example-taglib</uri>
<!-- 定義一個標簽 -->
<tag>
<!-- 定義標簽名 -->
<name>helloWorld</name>
<!-- 定義標簽處理類 -->
<tag-class>hs.HelloWorldTag</tag-class>
<!-- 定義標簽體為空 -->
<body-content>empty</body-content>
</tag>
</taglib>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description>A tag library exercising SimpleTag handlers.</description>
<tlib-version>1.0</tlib-version>
<short-name>mytaglib.tld</short-name>
<!-- 定義標簽庫URL -->
<uri>http://tomcat.apache.org/jsp2-example-taglib</uri>
<!-- 定義一個標簽 -->
<tag>
<!-- 定義標簽名 -->
<name>helloWorld</name>
<!-- 定義標簽處理類 -->
<tag-class>hs.HelloWorldTag</tag-class>
<!-- 定義標簽體為空 -->
<body-content>empty</body-content>
</tag>
</taglib>
3、使用自定義標簽庫(不帶標簽體)
[html]
<%@taglib uri="http://tomcat.apache.org/jsp2-example-taglib" prefix="mytag" %>
<%@taglib uri="http://tomcat.apache.org/jsp2-example-taglib" prefix="mytag" %>[html] view plaincopyprint?
<mytag:helloWorld/>
<mytag:helloWorld/>