使用struts標籤之前需要經過下面3個步驟的配置。
匯入tld檔案。
在web.xml中註冊標籤庫。
在頁面中引入標籤庫。
下面詳細介紹以上步驟。
匯入tld檔案。
tld檔案是struts的標籤庫描述檔案,一般將其直接複製到應用工程的web-inf目錄下,如圖5-6所示。
圖5-6 tld檔案
在web.xml中註冊標籤庫。
01 02 /web-inf/struts-bean.tld
03 /web-inf/struts-bean.tld
04 05
06 /web-inf/struts-html.tld
07 /web-inf/struts-html.tld
08 09
10 /web-inf/struts-logic.tld
11 /web-inf/struts-logic.tld
12 根據struts版本的不同,在web.xml中註冊標籤庫這一步驟是可以省略的。
在頁面中引入標籤庫。
在jsp頁面中使用標籤引入某個標籤庫,並且給予它乙個對於該頁面有效的字首作為標記,那麼就可以通過其字首使用該標籤庫了。引入標籤庫的**如下:
01 <%@ taglib uri="/web-inf/struts-bean.tld" prefix="bean" %>
02 <%@ taglib uri="/web-inf/struts-html.tld" prefix="html" %>
03 <%@ taglib uri="/web-inf/struts-logic.tld" prefix="logic" %>
在上面**中,例如將bean標籤庫的字首定義為bean,則可通過字首bean來引用bean標籤庫了,示例如下:
01 <%@ taglib uri="/web-inf/struts-bean.tld" prefix="bean" %>
02 struts 1.3.8的tld檔案內建在struts-taglib-1.3.8.jar中,只需要在jsp頁面中宣告類似如下即可:
<%@ taglib uri="" prefix="bean" %>
<%@ taglib uri="" prefix="html" %>
<%@ taglib uri="" prefix="logic" %>
或者將struts-taglib-1.3.8.jar解壓縮後將其中的tld檔案複製到web-inf目錄下,再按上述步驟配置。
struts標籤庫的匯入
使用struts標籤之前需要經過下面3個步驟的配置。匯入tld檔案。在web.xml中註冊標籤庫。在頁面中引入標籤庫。下面詳細介紹以上步驟。匯入tld檔案。tld檔案是struts的標籤庫描述檔案,一般將其直接複製到應用工程的web inf目錄下,如圖5 6所示。圖5 6 tld檔案 在web.xm...
struts2 1 6 標籤的匯入
剛開始學習struts2,直接就接觸的是最新版本的2.1.6 貌似版本與以往的有很多不同之處 所以好多網上的資料都不管用,開始接觸標籤了,卻發現標籤無法匯入 在2.1.6版本中無法找到struts tags.tld這個檔案,網上找到的好多資料都無效果,taglib prefix s uri stru...
struts匯入標籤庫錯誤,解決問題
strtuts2 下開發前的部署步驟 1 匯入jar包 strtuts2.3 除了基本jar包 commons fileupload 1.2.2.jar commons logging 1.1.1.jar freemarker 2.3.19.jar ognl 3.0.5.jar struts2 co...