萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> jsp編程 >> JSP自定義標簽實現數據字典

JSP自定義標簽實現數據字典

  1、關於JSP標簽的好處就不再羅嗦

數據字典就是使用的下拉框,只要定義使用那個字典就會將這個字典可用的內容顯示出來

顯示字典時只要定義那個字典和屬性值就可以顯示出字典的顯示值

 

       2、首先在web.xml中定義自定義標簽加載的引用,兩個屬性分別是引用的URI和加載路徑

  1. <?xml version="1.0" encoding="UTF-8"?>    
  2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"    
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee       
  5.     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">    
  6.     <welcome-file-list>    
  7.         <welcome-file>index.jsp</welcome-file>    
  8.     </welcome-file-list>    
  9.     <jsp-config>    
  10.         <taglib>    
  11.             <taglib-uri>/tld/web-html</taglib-uri>    
  12.             <taglib-location>    
  13.                 /WEB-INF/tlds/web-html.tld    
  14.             </taglib-location>    
  15.         </taglib>    
  16.     </jsp-config>    
  17. </web-app>   

    3、在web-html.tld中定義自己的標簽,數據字典應用的話我們需要一個標簽庫,三個標簽。分別是,select標簽,options標簽,和現實數據字典的標簽,每個標簽都對應不同的實現類

  1. <?xml version="1.0" encoding="UTF-8"?>    
  2. <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"      
  3.     "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">    
  4. <taglib>    
  5.     <tlib-version>1.0</tlib-version><!-- 標簽庫版本 -->    
  6.     <jsp-version>1.2</jsp-version>  <!-- 標簽庫要求的JSP規范版本 -->    
  7.   &


nbsp; <short-name>html</short-name>   <!-- JSP頁面編寫工具可以用來創建助記名的可選名字 -->    

  •     <tag>    
  •         <name>select</name>    
  •         <tag-class>com.SelectTag</tag-class>    
  •         <body-content>JSP</body-content>    
  •         <attribute>    
  •             <name>name</name>    
  •             <rtexprvalue>true</rtexprvalue>    
  •         </attribute>    
  •         <attribute>    
  •             <name>style</name>    
  •             <rtexprvalue>true</rtexprvalue>    
  •         </attribute>    
  •     </tag>    
  •     <tag>    
  •         <name>options</name>    
  •         <tag-class>com.OptionsTag</tag-class>    
  •         <body-content>JSP</body-content>    
  •         <attribute>    
  •             <name>collection</name>    
  •             <rtexprvalue>true</rtexprvalue>    
  •         </attribute>    
  •     </tag>    
  •     <tag>    
  •         <name>selectDisplay</name>    
  •         <tag-class>com.SelectDisplay</tag-class>    
  •         <


;body-content>JSP</body-content>    

  •         <attribute>    
  •             <name>collection</name>    
  •             <rtexprvalue>true</rtexprvalue>    
  •         </attribute>    
  •         <attribute>    
  •             <name>name</name>    
  •             <rtexprvalue>true</rtexprvalue>    
  •         </attribute>    
  •         <attribute>    
  •             <name>value</name>    
  •             <rtexprvalue>true</rtexprvalue>    
  •         </attribute>    
  •     </tag>    
  • </taglib>   

     4、實現類

實現類的作用就是在後台拼接所需HTML標簽內容,然後由JSP進行輸出

實現類最主要的兩個方法,一個遇到這個標簽開始時輸出,一個是結束時輸出

如果

copyright © 萬盛學電腦網 all rights reserved