标签:工作
最新项目发现使用tiles可以非常好的将多个页面组合起来,下面就是配置信息,使用tiles3
1、首先配置maven pom.xml添加如下:
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-tiles3-plugin</artifactId>
<version>2.3.16.3</version>
</dependency>
2、在WEB-INF目录下添加tiles.xml
<tiles-definitions>
<definition name="pets.base" template="/entrance/base.jsp">
<put-attribute name="header" value="/entrance/header.jsp"></put-attribute>
<put-attribute name="body" value="/aa.jsp"></put-attribute>
<put-attribute name="footer" value="/bb.jsp"></put-attribute>
</definition>
</tiles-definitions>
3、配置成后,在模板页面【/entrance/base.jsp】中需要添加标签
<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
使用时<tiles:insertAttribute name="header"></tiles:insertAttribute> name就是步骤2中的put-attribute节点的name
4、需要在web.xml中添加监听
<listener>
<listener-class>org.apache.tiles.extras.complete.CompleteAutoloadTilesListener</listener-class>
</listener>
struts2 maven整合tiles3,布布扣,bubuko.com
标签:工作
原文地址:http://blog.csdn.net/cml_blog/article/details/38368493