struts中使用tiles元件

2021-04-06 18:09:52 字數 752 閱讀 4087

1.在你的struts配置檔案struts-config.xml中加入下面的配置:

2.生成tiles-def.xml檔案:

<?xml version="1.0" encoding="iso-8859-1" ?>

3.生成layout.jsp布局檔案:

<%@ page contenttype="text/html; charset=gbk" %>

<%@ taglib uri="/tags/struts-tiles" prefix="tiles"%> 

同時還要保證你使用的是struts 1.1版本。

現在就可以動手為你的專案加入tiles應用了。

完成以上步驟,完成tomcate部署並啟動,通過http://127.0.0.1:8080/strutstiles/index.do可以看到效果.

執行下面兩個檔案是同樣的效果:

1、index1.jsp

<%@ page contenttype="text/html; charset=gb2312" %>

<%@ taglib uri="/tags/struts-tiles" prefix="tiles" %>

使用邏輯名

2、index.jsp

<%@ page contenttype="text/html; charset=gb2312" %>

<%@ taglib uri="/tags/struts-tiles" prefix="tiles" %>

struts中使用tiles元件

1.在你的struts配置檔案struts config.xml中加入下面的配置 2.生成tiles def.xml檔案 3.生成layout.jsp布局檔案 page contenttype text html charset gbk taglib uri tags struts tiles pr...

Struts中使用Spring裝配各個元件

struts中使用spring裝配各個元件 好處 執行期才對元件進行注入,減少依賴。struts和spring結合需要完成以下的2點。1。在struts的配置檔案中新增spring外掛程式,和spring整合後的自定義requestprocessor public class encodingpro...

在Struts中使用IncludeAction

使用includeaction includeaction的用法與forwardaction的用法比較相似,區別在於forwardaction將 跳轉到action 定義的資源,而includeaction用於引入該action 對應的資源。下面是includeaction定義的源 type org...