java:jsp: 一個簡單的自訂標籤 tld

來源:互聯網
上載者:User

標籤:檔案   xml檔案   post   app   訪問   test   htm   prefix   web app   

java:jsp: 一個簡單的自訂標籤 tld

請注意,uri都是:http://www.tag.com/mytag,保持統一,要不然報錯,不能訪問

tld檔案

 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <taglib xmlns="http://java.sun.com/xml/ns/j2ee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 5 http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" 6 version="2.0"> 7 <description>mytag 1.1 print library</description> 8 <display-name>mytag 標籤庫</display-name> 9 <tlib-version>1.0</tlib-version>10 <short-name>mytag</short-name>11 <uri>http://www.tag.com/mytag</uri>12 <tag>13     <description>列印 Hello</description>14     <name>print</name>15     <tag-class>cn.tag.MytagPrint</tag-class>16     <body-content>empty</body-content>17 </tag>18 </taglib>

在web.xml檔案中加入jsp-config配置,如果報錯,請將web.xml頭部的"<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" >"刪除掉:

 1 <web-app> 2   <display-name>Archetype Created Web Application</display-name> 3    4   <resource-ref> 5       <description>DB Connection</description> 6       <res-ref-name>jdbc/test</res-ref-name> 7       <res-type>javax.sql.DataSource</res-type> 8       <res-auth>Container</res-auth> 9   </resource-ref>10   11 12  <jsp-config>13     <taglib>  14         <taglib-uri>http://www.tag.com/mytag</taglib-uri>  15         <taglib-location>/WEB-INF/mytlds/mytag.tld</taglib-location>  16      </taglib> 17  </jsp-config>18  19  20 </web-app>

tag.jsp

 1 <%@ page language="java" contentType="text/html; charset=utf-8"%> 2 <%@ taglib prefix="mytag" uri="http://www.tag.com/mytag" %> 3 <html> 4 <head><title>簡單標籤執行個體</title></head> 5 <body> 6  7 <h3>調用 mytag 標籤庫中的 print 標籤</h3> 8 調用 print 標籤的結果:<mytag:print /> 9 10 </body>11 </html>

 

java:jsp: 一個簡單的自訂標籤 tld

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.