Sitemesh3 配置
程序员文章站
2022-04-19 21:32:03
...
安装
下载sitemesh3
传送门jar包下载
使用
导入下载好的jar包WebRoot\WEB-INF\lib\sitemesh-3.0-alpha-2.jar
修改web.xml 添加如下配置
<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
作为母版 就完成配置了
-
参考
传送门GitHub