程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP 自定義標簽步驟

JSP 自定義標簽步驟

編輯:關於JSP

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/>


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved