JSP中的TAG檔案和TLD檔案小結

來源:互聯網
上載者:User

在jsp檔案中,可以引用tag和tld檔案。
1.對於tag檔案
<%@ taglib prefix="ui" tagdir="/WEB-INF/tags" %>
其中的tags是個目錄,裡面有若干tag檔案。
但使用<ti:XXXX>時,目錄WEB-INF/tags下,必然有個XXXX.tag檔案與之對應。

2.對於tld檔案
在jsp中可以引用TLD檔案,如
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
但是這個http://struts.apache.org/tags-html對應著什麼呢?
jsp會在目前的目錄的\WEB-INF下找所有tld檔案,確認這個URL對應哪個TLD檔案。
當找到struts-html.tld檔案時,發現其中的內與這個URL對應。
但使用<html:YYYYY>時,這個TLD檔案中必然有個YYYY項與之對應。

還有一種更保險的方法是,在WEB-INF/web.xml中加上
<taglib>
    <taglib-uri>
http://jakarta.apache.org/tomcat/examples-taglib
    </taglib-uri>
    <taglib-location>
       /WEB-INF/jsp/example-taglib.tld
    </taglib-location>
</taglib>
這樣表示http://jakarta.apache.org/tomcat/examples-taglib對應著/WEB-INF/jsp/example-taglib.tld

tag檔案作用一般是一段小代碼,類似include檔案的作用。
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.