首页 > 编程 > JSP > 正文

JSP自定义标签实现 数据字典

2019-11-02 14:27:38
字体:
来源:转载
供稿:网友

  1、关于JSP标签的好处就不再罗嗦

数据字典就是使用的下拉框,只要定义使用那个字典就会将这个字典可用的内容显示出来

显示字典时只要定义那个字典和属性值就可以显示出字典的显示值

 

       2、首先在web.xml中定义自定义标签加载的引用,两个属性分别是引用的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中定义自己的标签,数据字典应用的话我们需要一个标签库,三个标签。分别是,select标签,options标签,和现实数据字典的标签,每个标签都对应不同的实现类

<?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><!-- 标签库版本 -->        <jsp-version>1.2</jsp-version>  <!-- 标签库要求的JSP规范版本 -->      &


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>             <
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表