一、使用sitemesh装饰器一共需要6步
1、引入sitemesh2.4 jar包
2、配置web.xml
3、根目录下新建default.jsp
4、根目录下新建index.jsp
5、/WEB/INF/目录下新建decorators.xml
6、访问index.jsp,测试即可
二、详细说明
1、引入sitemesh2.4 jar包
引入jar包有两种方式,可maven项目配置(不用下载jar包),也可下载jar包先引入/WEB/INF/lib文件夹并build path
2、配置web.xml
加入sitemesh过滤器
<filter>
<filter-name>sitemesh</filter-name>
<filter-class>
com.opensymphony.module.sitemesh.filter.PageFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/</url-pattern>
</filter-mapping>
3、根目录下新建default.jsp
default.jsp页面就是装饰器,比如说页头header、页尾footer、侧边栏aside等
示例:
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="sitemesh" uri="http://www.opensymphony.com/sitemesh/decorator" %>
<html>
<head>
<title><sitemesh:title/></title>
<sitemesh:head/>
</head>
<body>
<div id="content">
我是装饰器
<sitemesh:body/>
</div>
</body>
</html>
4、根目录下新建index.jsp
index.jsp就是被装饰页面,即真正显示的正文页面,不需要加入任何sitemesh相关,跟普通jsp页面一样
5、/WEB/INF/目录下新建decorators.xml
decorators.xml配置哪些需要被修饰的页面对应何种装饰器
<?xml version="1.0" encoding="UTF-8"?>
<decorators defaultdir="/decorators/">
<excludes>
<pattern>/static/</pattern>
<pattern>/remote/*</pattern>
</excludes>
<decorator name="default" page="default.jsp">
<pattern>/index.jsp</pattern>
</decorator>
</decorators>
6、访问index.jsp,测试即可
三、注:
本来想用sitemesh3.0.1实现,但是不论怎么都弄不出来,,,想尽了各种方法,各种找bug,,,到现在还是不行,网上相关资料太少,无语
之前用SSM框架写的一个网站,用的是sitemesh2.4,但是在/WEB/INF目录下就不行了,页面各种乱,不知道是否跟bootsrap样式,后面用springboot测试一个简单网页,sitemesh2.4 3.0两种版本都试过,都没起任何作用,尝试过修改路径、修改命名、查看两种版本官方英文文档,根据官方文档修改,但依旧没用,也不报错,也没反应,调试了一整天,郁闷死,真是穷尽各种办法,任何还是不行,果断叉掉eclipse,暂时放置一边,这段时间有需求写一个后台管理系统,感觉还是需要一个装饰器,就又重新配置sitemesh,然后配置成功,就写了此篇配置教程,配置过程中,有一个问题很麻烦,那就是classnotfoundexception:configarablesitemesh找不到对应类,只能删除jar包,重新构建项目,最终还是搞定,总之遇到问题尽量多尝试解决方法,多动手,多思考