layout.xml 1014 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE tiles-definitions PUBLIC
  3. "-//Apache Software Foundation//DTD Tiles Configuration 3.0//EN"
  4. "http://tiles.apache.org/dtds/tiles-config_3_0.dtd">
  5. <tiles-definitions>
  6. <!--出错页面提示-->
  7. <definition name="errorPage" template="/WEB-INF/jsp/error.jsp"></definition>
  8. <!-- 主布局 -->
  9. <definition name="layout" template="/WEB-INF/jsp/common/mainLayout.jsp">
  10. </definition>
  11. <!-- 主布局 -->
  12. <definition name="generalView" extends="layout">
  13. <put-attribute name="header" value="/WEB-INF/jsp/common/commonHead.jsp" />
  14. <!--<put-attribute name="pageCss" expression="/WEB-INF/jsp/${contentPage}Css.jsp" />-->
  15. <put-attribute name="contentPage" expression="/WEB-INF/jsp/${contentPage}.jsp" />
  16. <put-attribute name="footer" value="/WEB-INF/jsp/common/commonFoot.jsp" />
  17. <put-attribute name="pageJs" expression="/WEB-INF/jsp/${contentPage}Js.jsp" />
  18. </definition>
  19. </tiles-definitions>