Sitemesh3 配置

2017-05-15  本文已影响0人  快乐的大鹅
<web-app>
    
    ...
    
    <filter>
        <filter-name>sitemesh</filter-name>
        <filter-class>org.sitemesh.config.ConfigurableSiteMeshFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>sitemesh</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>

在WEB-INF下创建sitemesh3.xml 内容如下

<sitemesh>
    <mapping path="/*" decorator="/decorator.jsp"/>
    <mapping path="/views/demo1.jsp" exclue="true"/>
</sitemesh>

在WebRoot下创建decorator.jsp 作为母版 就完成配置了

上一篇下一篇

猜你喜欢

热点阅读