jsp中標籤的部署與調用

來源:互聯網
上載者:User
js 1、首先編寫一個(標籤java檔案)
標頭檔中要包含packeg+class檔案的放置路徑,然後編譯產生class檔案,放到相應classes目錄下。
2、編寫一個jsp或html 檔案
注意:標頭檔中要寫
<%@ taglib uri="名字與web.xml檔案中的uri名字相同" prefix="first" %>
<first:"+tld檔案中name相同"/>
3、編寫一個tld檔案
注意:修改
<tag>
<name>"與jsp或html相對應"</name>
<tagclass>"class檔案的放置路徑"</tagclass>
<bodycontent>empty</bodycontent>//注意什麼時候用empty什麼時候用jsp(與jsp/html有關)
<info>info</info>
</tag>
4、修改web.xml檔案即添加標籤
注意:添加
<taglib>
<taglib-uri>"與jsp或html的uri名字相同"</taglib-uri>
<taglib-location>"tld檔案的放置路徑"</taglib-location>
</taglib>

以上是通過xml作中轉,如不許xml檔案操作如下:
只許修改jsp以下內容:
、編寫一個jsp或html 檔案
注意:標頭檔中要寫
<%@ taglib uri="tld檔案的所在位置" prefix="first" %>
<first:"+tld檔案中name相同"/>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.