本文主要是介绍sitemesh使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. SiteMesh的简介
Sitemesh是由一个基于Web页面布局、装饰及与现存Web应用整合的框架。它能帮助我们再由大量页面工程的项目中创建一致的页面布局和外观,如一致的导航条、一致的banner、一致的版权等。
2. SiteMesh的工作原理
SiteMesh是基于Servlet的filter的,即过滤流。它是通过截取reponse,并进行装饰后再交付给客户。
其中涉及到两个名词: 装饰页面(decorator page)和 “被装饰页面(Content page)" , 即 SiteMesh通过对Content Page的装饰,最终得到页面布局和外观一直的页面,
并返回给客户
3. SiteMesh的配置
3.1 web.xml的配置
Sitemesh2
<filter>
<filter-name>sitemesh2</filter-name>
<filter-class>com.opensymphony.sitemesh.webapp.SiteMeshFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>sitemesh2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Sitemesh3
<filter>
<filter-name>sitemesh3</filter-name>
<filter-class>org.sitemesh.config.ConfigurableSiteMeshFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>sitemesh3</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Sitemesh2:
3.2 建立decorators.xml
在/WEB-INF下创建decorators.xml文件,siteMesh通过该文件来获知"装饰页面"和"被装饰页面"的映射
<decorators defaultdir="/decorators">
<excludes>
<pattern>/page/menu.jsp</pattern>
</excludes>
<decorator name="basic-theme"page="decorator.jsp">
<pattern>/*</pattern>
</decorator>
</decorators>
SiteMesh3
3.3 建立配置文件(sitemesh3.xml)
在/WEB-INF下创建sitemesh3.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<sitemesh>
<mapping path="/page/menu.jsp exclude="true"/>
<mapping path="/*" decorator="/decorators/decorator.jsp"/>
</sitemesh>
3.4 建立装饰页(decorator.jsp)
4 sitemesh常用标签
Sitemesh2 :
<decorator:head />
插入原始页面(被包装页面)的head标签中的内容
<decorator:title [default="..." ] />
<decorator:body />
<decorator:getPropertyproperty="..." [ default="..." ] [writeEntireProperty="..." ]/>
Sitemesh3:
<sitemesh:write property=''/>
Head ,body title
<�|>/X]P�[rong>
Sitemesh3:
<sitemesh:write property=''/>
Head ,body title
这篇关于sitemesh使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!