123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE tiles-definitions PUBLIC
- "-//Apache Software Foundation//DTD Tiles Configuration 3.0//EN"
- "http://tiles.apache.org/dtds/tiles-config_3_0.dtd">
- <tiles-definitions>
- <!--出错页面提示-->
- <definition name="errorPage" template="/WEB-INF/jsp/error.jsp"></definition>
- <!-- 主布局 -->
- <definition name="layout" template="/WEB-INF/jsp/common/mainLayout.jsp">
- </definition>
- <!-- 主布局 -->
- <definition name="generalView" extends="layout">
- <put-attribute name="header" value="/WEB-INF/jsp/common/commonHead.jsp" />
- <!--<put-attribute name="pageCss" expression="/WEB-INF/jsp/${contentPage}Css.jsp" />-->
- <put-attribute name="contentPage" expression="/WEB-INF/jsp/${contentPage}.jsp" />
- <put-attribute name="footer" value="/WEB-INF/jsp/common/commonFoot.jsp" />
- <put-attribute name="pageJs" expression="/WEB-INF/jsp/${contentPage}Js.jsp" />
- </definition>
- </tiles-definitions>
|