使用 JSP自定義標籤

2021-08-01 22:28:36 字數 762 閱讀 8383

參考  

建立tld檔案 

new ----> xml ----> xml file ----> 輸入test.tld 

----> create xml file from a dtd file ----> select xml catalog entry 

----> -//sun microsystems, inc.//dtd jsp tag library 1.2//en 

----> finish

實現的效果是  傳入id,查詢到產品詳情的標籤,並用li元素包含單個標籤

以下是**檔案:

***.tld 檔案

<?xml version="1.0" encoding="utf-8"?>

1.0 2.0

example tld

producttag

com.test.commons.producttag

empty

idtrue

true

標籤類

public class producttag extends ******tagsupport 

} }public long getid()

public void setid(long id)

}

在jsp頁面中使用  

<%@ taglib prefix="xm" uri="/web-inf/***.tld"%>

JSP自定義標籤

1.jsp自定義標籤組成部分 web.xml載入標籤庫,標籤庫描述檔案 tld 標籤處理程式類。2.在自定義標籤的起始和結束標籤之間的部分為標籤體 body 3.分別介紹一下jsp自定義標籤的三個組成部分,以輸出經典的 helloworld為例。修改web.xml載入標籤庫 描述標籤庫檔案 tld ...

JSP自定義標籤

1 開發自定義標籤庫 繼承父類 tagsupport重寫dotag 方法 2 建立tld檔案 1.0mytaglib web inf tlds diego.tld hellotag hellotag empty 3 使用標籤庫 taglib uri web inf tlds diego.tld pr...

JSP自定義標籤

測試環境 tomcat5.5 新增的jar包 jstl.jar standard.jar 自定義jsp標籤的處理過程 來自網上 1 在jsp中引入標籤庫 taglib prefix taglibprefix uri tagliburi 2 在jsp中使用標籤庫標籤 3 web容器根據第二個步驟中的p...