struts2 maven整合tiles3

Posted zsychanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2 maven整合tiles3相关的知识,希望对你有一定的参考价值。

最新项目发现使用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的主要内容,如果未能解决你的问题,请参考以下文章

Struts2框架07 Struts2 + Spring + Mybatis 整合

使用Maven搭建Struts2+Spring3+Hibernate4的整合开发环境

IDEA整合Mybatis+Struts2+Spring

Struts2 Spring Hibernate 框架整合 Annotation MavenProject

SSH 框架整合(maven版本 xml配置方式)

Struts2.5.30,Hibernate5.6.8.Final,Spring5.3.19整合