主頁 > 知識庫 > JSP 自定義標(biāo)簽實現(xiàn)數(shù)據(jù)字典的實例

JSP 自定義標(biāo)簽實現(xiàn)數(shù)據(jù)字典的實例

熱門標(biāo)簽:海外圖書館地圖標(biāo)注點 電銷機(jī)器人免培訓(xùn) 自繪地圖標(biāo)注數(shù)據(jù) 如何看懂地圖標(biāo)注點 給地圖標(biāo)注得傭金 外呼系統(tǒng)使用方法 電話機(jī)器人需要使用網(wǎng)絡(luò)嗎 南通通訊外呼系統(tǒng)產(chǎn)品介紹 潤滑油銷售電銷機(jī)器人

JSP 自定義標(biāo)簽實現(xiàn)數(shù)據(jù)字典的實例

 1.關(guān)于JSP標(biāo)簽的好處就不再羅嗦

數(shù)據(jù)字典就是使用的下拉框,只要定義使用那個字典就會將這個字典可用的內(nèi)容顯示出來

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

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



?xml version="1.0" encoding="UTF-8"?> 
web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   
  http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> 
  welcome-file-list> 
    welcome-file>index.jsp/welcome-file> 
  /welcome-file-list> 
  jsp-config> 
    taglib> 
      taglib-uri>/tld/web-html/taglib-uri> 
      taglib-location> 
        /WEB-INF/tlds/web-html.tld 
      /taglib-location> 
    /taglib> 
  /jsp-config> 
/web-app> 

 3.在web-html.tld中定義自己的標(biāo)簽,數(shù)據(jù)字典應(yīng)用的話我們需要一個標(biāo)簽庫,三個標(biāo)簽。分別是,select標(biāo)簽,options標(biāo)簽,和現(xiàn)實數(shù)據(jù)字典的標(biāo)簽,每個標(biāo)簽都對應(yīng)不同的實現(xiàn)類

?xml version="1.0" encoding="UTF-8"?> 
!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"  
  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"> 
taglib> 
  tlib-version>1.0/tlib-version>!-- 標(biāo)簽庫版本 --> 
  jsp-version>1.2/jsp-version> !-- 標(biāo)簽庫要求的JSP規(guī)范版本 --> 
  short-name>html/short-name>  !-- JSP頁面編寫工具可以用來創(chuàng)建助記名的可選名字 --> 
  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.實現(xiàn)類

實現(xiàn)類的作用就是在后臺拼接所需HTML標(biāo)簽內(nèi)容,然后由JSP進(jìn)行輸出

實現(xiàn)類最主要的兩個方法,一個遇到這個標(biāo)簽開始時輸出,一個是結(jié)束時輸出

如果需要定義屬性,可以參考實現(xiàn)類定義屬性,并在TLD中定義,在JSP中使用標(biāo)簽時快捷鍵就可以出來這個屬性

首先是select標(biāo)簽的代碼:

package com; 
import java.io.IOException; 
import javax.servlet.jsp.JspException; 
import javax.servlet.jsp.JspTagException; 
import javax.servlet.jsp.tagext.BodyTagSupport; 
/** 
 * TagSupport與BodyTagSupport的區(qū)別: 
 * 主要看標(biāo)簽處理類是否要讀取標(biāo)簽體的內(nèi)容和改變標(biāo)簽體返回的內(nèi)容,如果不需要就用TagSupport,否則就用BodyTagSupport 
 * 用TagSupport實現(xiàn)的標(biāo)簽,都可以用BodyTagSupport來實現(xiàn),因為BodyTagSupport繼承了TagSupport 
 */ 
@SuppressWarnings("serial") 
public class SelectTag extends BodyTagSupport { 
  @Override 
  public int doStartTag() throws JspException { 
    try { 
      StringBuffer results = new StringBuffer("select"); 
      if(name != null){ 
        results.append(" name=\""); 
        results.append(name); 
        results.append("\""); 
      } 
      if(style != null){ 
        results.append(" style=\""); 
        results.append(style); 
        results.append("\""); 
      } 
      results.append(">"); 
      pageContext.getOut().write(results.toString()); 
    } catch (IOException ex) { 
      throw new JspTagException("錯誤"); 
    } 
    return EVAL_BODY_INCLUDE; 
  } 
  @Override 
  public int doEndTag() throws JspException { 
    try { 
      StringBuffer results = new StringBuffer(""); 
      // 因為下拉中包含下拉內(nèi)容,所以只能在遇到結(jié)束標(biāo)簽時才能寫select結(jié)束 
      results.append("/select>");      
      pageContext.getOut().write(results.toString()); 
    } catch (IOException ex) { 
      throw new JspTagException("錯誤"); 
    } 
    return EVAL_PAGE; 
  } 
  // 樣式 
  protected String style; 
  // 名字 
  protected String name; 
  public String getStyle() { 
    return style; 
  } 
  public void setStyle(String style) { 
    this.style = style; 
  } 
  public String getName() { 
    return name; 
  } 
  public void setName(String name) { 
    this.name = name; 
  }   
  /** 
  doStartTag()方法是遇到標(biāo)簽開始時會呼叫的方法,其合法的返回值是EVAL_BODY_INCLUDE與SKIP_BODY,前者表示將顯示標(biāo)簽間的文字,后者表示不顯示標(biāo)簽間的文字 
  doEndTag()方法是在遇到標(biāo)簽結(jié)束時呼叫的方法,其合法的返回值是EVAL_PAGE與SKIP_PAGE,前者表示處理完標(biāo)簽后繼續(xù)執(zhí)行以下的JSP網(wǎng)頁,后者是表示不處理接下來的JSP網(wǎng)頁 
  doAfterBody(),這個方法是在顯示完標(biāo)簽間文字之后呼叫的,其返回值有EVAL_BODY_AGAIN與SKIP_BODY,前者會再顯示一次標(biāo)簽間的文字,后者則繼續(xù)執(zhí)行標(biāo)簽處理的下一步 
  EVAL_BODY_INCLUDE:把Body讀入存在的輸出流中,doStartTag()函數(shù)可用 
  EVAL_PAGE:繼續(xù)處理頁面,doEndTag()函數(shù)可用 
  SKIP_BODY:忽略對Body的處理,doStartTag()和doAfterBody()函數(shù)可用 
  SKIP_PAGE:忽略對余下頁面的處理,doEndTag()函數(shù)可用 
  EVAL_BODY_BUFFERED:申請緩沖區(qū),由setBodyContent()函數(shù)得到的BodyContent對象來處理tag的body,如果類實現(xiàn)了BodyTag,那么doStartTag()可用,否則非法 
  EVAL_BODY_AGAIN:請求繼續(xù)處理body,返回自doAfterBody(),這個返回值在你制作循環(huán)tag的時候是很有用的  
  預(yù)定的處理順序是:doStartTag()返回SKIP_BODY,doAfterBodyTag()返回SKIP_BODY,doEndTag()返回EVAL_PAGE 
  如果繼承了TagSupport之后,如果沒有改寫任何的方法,標(biāo)簽處理的執(zhí)行順序是:doStartTag() ->不顯示文字 ->doEndTag()->執(zhí)行接下來的網(wǎng)頁 
  如果您改寫了doStartTag(),則必須指定返回值, 
  如果指定了EVAL_BODY_INCLUDE,則執(zhí)行順序是:doStartTag()->顯示文字->doAfterBodyTag()->doEndTag()->執(zhí)行下面的網(wǎng)頁 
   */ 
} 

關(guān)于返回參數(shù),返回具體數(shù)字也可以,不用過于糾結(jié)

然后是下拉內(nèi)容實現(xiàn)類

package com; 
import java.io.IOException; 
import javax.servlet.jsp.JspException; 
import javax.servlet.jsp.JspTagException; 
import javax.servlet.jsp.tagext.BodyTagSupport; 
@SuppressWarnings("serial") 
public class OptionsTag extends BodyTagSupport { 
  @Override 
  public int doStartTag() throws JspException { 
    return EVAL_BODY_INCLUDE; 
  } 
  @Override 
  public int doEndTag() throws JspException { 
    try { 
      StringBuffer results = new StringBuffer(""); 
      if ("SEX".equals(collection)) { 
        results.append("option value=\"0\" selected=\"selected\">請選擇/option>"); 
        results.append("option value=\"1\">男/option>"); 
        results.append("option value=\"2\">女/option>"); 
      } 
      pageContext.getOut().write(results.toString()); 
    } catch (IOException ex) { 
      throw new JspTagException("錯誤"); 
    } 
    return EVAL_PAGE; 
  } 
  // collection只是傳遞一個標(biāo)識,具體下拉值內(nèi)容是從數(shù)據(jù)庫取還是從請求中得到為不同具體實現(xiàn) 
  protected String collection; 
  public String getCollection() { 
    return collection; 
  } 
  public void setCollection(String collection) { 
    this.collection = collection; 
  } 
} 

 具體你的字典數(shù)據(jù)從數(shù)據(jù)庫中如何存儲如何查詢,可以自定義實現(xiàn)

顯示的標(biāo)簽實現(xiàn),為了將來可以在頁面取到標(biāo)簽內(nèi)容值,我們定義隱藏域來保存屬性值,然后在顯示顯示內(nèi)容


package com; 
import java.io.IOException; 
import javax.servlet.jsp.JspException; 
import javax.servlet.jsp.JspTagException; 
import javax.servlet.jsp.tagext.BodyTagSupport; 
@SuppressWarnings("serial") 
public class SelectDisplay extends BodyTagSupport { 
  @Override 
  public int doStartTag() throws JspException { 
    try { 
      StringBuffer results = new StringBuffer(""); 
      pageContext.getOut().write(results.toString()); 
    } catch (IOException ex) { 
      throw new JspTagException("錯誤"); 
    } 
    return EVAL_BODY_INCLUDE; 
  } 
  @Override 
  public int doEndTag() throws JspException { 
    try { 
      StringBuffer results = new StringBuffer(""); 
      if ("SEX".equals(collection)) { 
        results.append("span>"); 
        results.append("input type=\""); 
        results.append("hidden\" name=\""); 
        results.append(getName()); 
        results.append("\""); 
        results.append(" value=\""); 
        results.append(getValue()); 
        results.append("\">");         
        if ("1".equals(getValue())) { 
          results.append("男"); 
        } else if ("2".equals(getValue())) { 
          results.append("女"); 
        } else { 
          results.append("請選擇"); 
        } 
        results.append("/span>"); 
      } 
      pageContext.getOut().write(results.toString()); 
    } catch (IOException ex) { 
      throw new JspTagException("錯誤"); 
    } 
    return EVAL_PAGE; 
  } 
  // collection只是傳遞一個標(biāo)識,具體下拉值內(nèi)容是從數(shù)據(jù)庫取還是從請求中得到為不同具體實現(xiàn) 
  protected String collection; 
  // 傳遞的值 
  protected String value; 
  // 該屬性的名稱 
  protected String name; 
  public String getCollection() { 
    return collection; 
  } 
  public void setCollection(String collection) { 
    this.collection = collection; 
  } 
  public String getName() { 
    return name; 
  } 
  public void setName(String name) { 
    this.name = name; 
  } 
  public String getValue() { 
    return value; 
  } 
  public void setValue(String value) { 
    this.value = value; 
  } 
} 
 
 
 

5.JSP中引用,直接在index.jsp中引用

需要引入相應(yīng)的標(biāo)簽內(nèi)容,引入的方式在JSP頭部引用

標(biāo)簽的屬性可以設(shè)置也可以不設(shè)置,標(biāo)簽的使用和HTML標(biāo)簽的使用是一樣的,定義屬性即可

%@ page language="java" pageEncoding="UTF-8"%> 
%@ taglib uri="/tld/web-html" prefix="html"%> 
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
html> 
  head> 
    title>JSP 自定義標(biāo)簽的實現(xiàn)/title> 
  /head> 
  body> 
    請選擇: 
    html:select name="sex" style="width:100px"> 
      html:options collection="SEX">/html:options> 
    /html:select> 
    顯示性別: 
    html:selectDisplay collection="SEX" value="1" name="sex">/html:selectDisplay>    
  /body> 
/html> 
 

 6.后話

訪問項目就可以看到效果,附件是這個項目的源代碼,導(dǎo)入到MyEclipse中可以查看

如果想要自己設(shè)計一個大的標(biāo)簽庫,可以設(shè)計一個父類,包含一些主要的屬性,例如name,id,style等屬性。然后在子類中定義自己的特有屬性

這個實現(xiàn)只是學(xué)習(xí)一下JSP自定義標(biāo)簽使用的HelloWorld程序,然后包含了字典應(yīng)用的實際例子,程序簡單,僅供參考

 如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • SpringMVC 向jsp頁面?zhèn)鬟f數(shù)據(jù)庫讀取到的值方法
  • jsp實現(xiàn)textarea中的文字保存換行空格存到數(shù)據(jù)庫的方法
  • jsp 使用request為頁面添加靜態(tài)數(shù)據(jù)的實例
  • Struts2.5 利用Ajax將json數(shù)據(jù)傳值到JSP的實例
  • 讀取數(shù)據(jù)庫的數(shù)據(jù)并整合成3D餅圖在jsp中顯示詳解
  • springMVC如何將controller中數(shù)據(jù)傳遞到j(luò)sp頁面
  • jsp中EL表達(dá)式獲取數(shù)據(jù)
  • JSP數(shù)據(jù)交互實現(xiàn)過程解析

標(biāo)簽:南京 銅川 樂山 大連 廣州 黃石 內(nèi)江 貸款邀約

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP 自定義標(biāo)簽實現(xiàn)數(shù)據(jù)字典的實例》,本文關(guān)鍵詞  JSP,自定義,標(biāo)簽,實現(xiàn),數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP 自定義標(biāo)簽實現(xiàn)數(shù)據(jù)字典的實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP 自定義標(biāo)簽實現(xiàn)數(shù)據(jù)字典的實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章