`
zjm16
  • 浏览: 71042 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
文章分类
社区版块
存档分类
最新评论

siteMesh使用参考

阅读更多
创建一个Web应用程序,这里我创建一个名为myapp的Web应用程序;
复制sitemesh-2.2.1.jar文件到{myapp}/WEB-INF/lib目录下;
编辑{myapp}/WEB-INF/web.xml文件
<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
     version="2.4">
    <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>
  
    <session-config>
    <session-timeout>
        30
    </session-timeout>
    </session-config>
    <welcome-file-list>
    <welcome-file>
        index.jsp
    </welcome-file>
    </welcome-file-list>
</web-app>



添加蓝色高亮部分。

在{myapp}/WEB-INF/目录下创建decorators.xml文件,并且输入一下内容
<?xml version="1.0" encoding="ISO-8859-1"?>

<decorators defaultdir="/decorators">
    <decorator name="main" page="main.jsp">
        <pattern>/*</pattern>
    </decorator>

    <decorator name="panel" page="panel.jsp"/>
    <decorator name="printable" page="printable.jsp"/>
</decorators>


安装完毕。
例子1
在{myapp}/WEB-INF/decorators.xml文件中添加以下decorator
<decorator name="mydecorator1" page="mydecorator1.jsp">
        <pattern>/test1.jsp</pattern>
    </decorator> 

在{myapp}/decorators目录下添加mydecorator1.jsp文件,内容如下:
<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>
<html>
    <head>
        <title>My Site - <decorator:title default="Welcome!" /></title>
        <decorator:head />
    </head>
    <body>
        <decorator:body />
        <p>This message is in /decorators/mydecorator1.jsp</p>      
    </body>
</html>


在{myapp}目录下添加test1.jsp文件,内容如下:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>This is test1</title>
    </head>
    <body>
    <b>This is test1</b>
    </body>
</html>



打开浏览器,访问http://localhost:8080/myapp/test1.jsp,将会出现一下内容:
This is test1


This message is in /decorators/mydecorator1.jsp




例子2 (decorator:getProperty tag)

有时候,我们期望修改页面中某个有固定标记的片段,例如我们的jsp中有一个标记<mytag>...</mytag>,此时可以用如下方法实现:

在{myapp}/WEB-INF/decorators.xml文件中添加以下decorator
<decorator name="mydecorator2" page="mydecorator2.jsp">
        <pattern>/test2.jsp</pattern>
    </decorator> 

在{myapp}/decorators目录下添加mydecorator2.jsp文件,内容如下:
<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>

<html>
    <head>
        <title>My Site - <decorator:title default="Welcome!" /></title>
        <decorator:head />
    </head>

    <body>
        <decorator:body />

        <decorator:getProperty property="page.content1"/>
        <decorator:getProperty property="page.content2"/>
       
        <!-- do nothing -->
        <decorator:getProperty property="page.content3"/>
      
        <p>This message is in /decorators/mydecorator2.jsp</p>
    </body>
</html>


在{myapp}目录下添加test2.jsp文件,内容如下:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>This is test2</title>
    </head>
  
    <body>
    <b>This is test2</b>
    <b>Use &lt;decorator:getProperty&gt; tag</b>
  
    <content tag="content1"><p>This is content1</p></content>
    <content tag="content2"><p>This is content2</p></content>
    <content tag="content4"><p>This is content4, it shouldn't be display</p></content>
    </body>
</html>


打开浏览器,访问http://localhost:8080/myapp/test2.jsp,将会出现一下内容:
This is test2

Use <decorator:getProperty> tag

This is content1

This is content2

This message is in /decorators/mydecorator2.jsp


例子3 (page:applyDecorator tag)
在{myapp}/WEB-INF/decorators.xml文件中添加以下decorator
    <decorator name="mydecorator3" page="mydecorator3.jsp">
        <pattern>/test3.jsp</pattern>
    </decorator>
   
    <decorator name="mydecorator31" page="mydecorator31.jsp">
    </decorator>


在{myapp}/decorators目录下添加mydecorator3.jsp文件,内容如下:
<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>
<%@ taglib uri="http://www.opensymphony.com/sitemesh/page" prefix="page" %>
<html>
    <head>
        <title>My Site - <decorator:title default="Welcome!" /></title>
        <decorator:head />
    </head>

    <body>
        <decorator:body />

        <page:applyDecorator name="mydecorator31">
            <content tag="content1"><p>This is content1</p></content>
            <content tag="content2"><p>This is content2</p></content>
        </page:applyDecorator>
    </body>
</html>


在{myapp}/decorators目录下添加mydecorator31.jsp文件,内容如下:

<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>
<%@ taglib uri="http://www.opensymphony.com/sitemesh/page" prefix="page" %>

<p><i>begin</i></>
<decorator:getProperty property="page.content1"/>
<decorator:getProperty property="page.content2"/>
<p><i>end</i></>


在{myapp}目录下添加test3.jsp文件,内容如下:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>This is test3</title>
    </head>
  
    <body>
    <b>This is test3</b>
    <b>Use &lt;page:applyDecorator&gt; tag</b>
    </body>
</html> 

注意:相对于例子2,这里已经没有了<content tag="XXX"/>标签。

打开浏览器,访问http://localhost:8080/myapp/test3.jsp,将会出现一下内容:
This is test3

Use <page:applyDecorator> tag

begin

This is content1

This is content2

end


这里,我在mydecorator3.jsp中应用了mydecorator31.jsp的的decorator,并且将原来在test2.jsp中的 <content />标签复制到mydecorator3.jsp中,此时对于<content tag="xxx"/>的标签将会由mydecorator31.jsp了装饰。

例子4 (page:param tag)
在{myapp}/WEB-INF/decorators.xml文件中添加以下decorator
    <decorator name="mydecorator4" page="mydecorator4.jsp">
        <pattern>/test4.jsp</pattern>
    </decorator>
   
    <decorator name="mydecorator41" page="mydecorator41.jsp">
    </decorator>


在{myapp}/decorators目录下添加mydecorator4.jsp文件,内容如下:
<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>
<%@ taglib uri="http://www.opensymphony.com/sitemesh/page" prefix="page" %>

<html>
    <head>
        <title>My Site - <decorator:title default="Welcome!" /></title>
        <decorator:head />
    </head>

    <body>
        <decorator:body />
        <page:applyDecorator name="mydecorator41" >
            <content tag="content1"><p>This is content1</p></content>
            <content tag="content2"><p>This is content2</p></content>
            <page:param name="page.content1"><p>This content1 has been replaced</p></page:param>
        </page:applyDecorator>
    </body>
</html>


在{myapp}/decorators目录下添加mydecorator41.jsp文件,内容如下:

<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>
<%@ taglib uri="http://www.opensymphony.com/sitemesh/page" prefix="page" %>

<p><i>begin</i></>
<decorator:getProperty property="page.content1"/>
<decorator:getProperty property="page.content2"/>
<p><i>end</i></>


在{myapp}目录下添加test4.jsp文件,内容如下:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>This is test4</title>
    </head>
  
    <body>
    <b>This is test4</b>
    <b>Use &lt;page:param&gt; tag</b>
    </body>
</html>


打开浏览器,访问http://localhost:8080/myapp/test4.jsp,将会出现一下内容:
This is test4

Use <page:param> tag

begin

This content1 has been replaced

This is content2

end


这里,我在mydecorator4.jsp中应用了mydecorator41.jsp的的decorator,并且添加了<page:param name="page.content1">标签,那么此时页面上将会用<page:param>标签中的内容替换原来在<decorator:getProperty property="page.content1"/>中的内容,因此页面将不在“This is content1”而显示“This content1 has been replaced”。

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/kongxx/archive/2007/05/13/1606901.aspx
分享到:
评论

相关推荐

    sitemesh3-demo

    在参考链接中提到的博客文章(http://blog.csdn.net/thc1987/article/details/6913416),作者详细介绍了如何配置Sitemesh3以及在实际项目中应用它的步骤,包括下载和引入依赖、配置过滤器、设置装饰规则以及处理...

    sitemesh入门demo

    这个demo是基于博主的**Sitemesh入门和使用笔记**,提供了对应的源码供学习者实践和参考。以下是关于Sitemesh的详细讲解: 1. **安装与配置** - 首先,你需要将Sitemesh的JAR文件添加到你的项目类路径中。这可以...

    sitemesh布局知识点汇总

    4. **装饰过程**:使用选定的装饰器对资源进行装饰,将装饰后的结果返回给客户端浏览器。 #### 四、简单示例 下面是一个简单的Sitemesh安装和配置示例,以展示如何在项目中集成Sitemesh: ##### 1. 安装步骤 - **...

    sitemesh3包

    在本篇文章中,我们将深入探讨 Sitemesh3 的核心特性、安装过程、使用方法以及 SDK 包含的组件。 首先,我们来看看标题中的 "sitemesh3包"。这个包通常包含了 Sitemesh3 的完整源码、编译后的 JAR 文件、示例代码、...

    sitemesh-2.3.zip

    - `README.txt`: 提供了关于 Sitemesh 的基本介绍、安装和使用指南,是快速入门的参考文档。 - `LICENSE.txt`: 描述了 Sitemesh 的许可协议,通常为 Apache 2.0 或 GPL,表明软件的使用权限和限制。 - `build.xml...

    sitemesh 2.4.1

    这对于初学者来说是非常有价值的参考资料,可以通过查看和修改这个示例来快速学习Sitemesh的用法。 **sitemesh-2.4.1.zip** 文件是Sitemesh 2.4.1的源代码压缩包,包含了框架的所有源代码、文档、配置文件和其他...

    SpringSide4 参考手册

    SpringSide4参考手册是一份详尽的文档,涵盖了使用SpringSide4.0版本开发应用时可能会用到的各种技术组件和模块。SpringSide是一个开源的Java开发平台,它集成了Spring框架和大量实用的组件,以方便开发人员构建复杂...

    struts2参考文档(word版)

    总的来说,这份Struts2参考文档全面覆盖了Struts2框架的主要概念和技术,对于想要学习或已经使用Struts2的开发者来说,是一份非常有价值的资源。虽然它在标签部分的介绍较少,但其他章节的内容足够深入,可以帮助...

    基于maven3开发babasport源码(更新到38讲)

    \babasportrefactoring\babasportbluetripe为参考struts官方例子后重构的代码,同步更新到38讲; \babasportrefactoring\babasportcompact 为清理了非必要测试的子model2,Spring3.05 + Strtus2 + JPA(Hibernate) + ...

    xdoclet_appfuse打包

    5. "使用sitemesh建立复合视图.doc":SiteMesh是一个网页布局框架,它可以将页面的装饰和内容分离,这个文档指导如何用SiteMesh来创建和管理网站的统一外观。 6. "Acegi+hibernate 动态实现基于角色的权限管理.doc...

    struts-2.3.16.3

    例如,FREEMARKER-LICENSE.txt和FREEMARKER-README.txt可能表示Struts2使用了FreeMarker模板引擎,XPP3-LICENSE.txt可能代表XML处理库,而SITEMESH-LICENSE.txt可能意味着SiteMesh用于页面布局。这些JAR文件是运行...

    AppFuse 2.0 RC1 Documentation

    20. **SiteMesh和Spring框架集成**:解释如何利用SiteMesh进行页面布局管理和使用Spring框架进行业务逻辑处理。 21. **教程和开发环境**:提供安装配置教程,如SMTP服务器设置,以及从旧版AppFuse迁移至新版的指南...

    Java EE课程设计报告.doc

    Java EE课程设计报告的核心是基于SpringSide 4.0构建一个综合的教育管理系统,涵盖了多个关键技术,如Spring...参考文献部分则列出了在设计过程中参考的相关资料和技术文档,体现学生对知识来源的尊重和研究的严谨性。

    appfuse-documentation-2.1.0官方文档

    参考指南部分是文档的核心,它深入介绍了 AppFuse 的各个组成部分及其使用方法。下面是一些关键主题: - **Ajax**:介绍如何在 AppFuse 应用中集成 Ajax 技术。 - **AppFuse Maven 插件**:讲解如何利用 Maven 插件...

    基于SSM+MySQL的电子商城系统设计与实现.zip

    布局框架:SiteMesh 3.0.1 分布式应用程序协调服务:ZooKeeper 3.3.1 分布式服务框架:Dubbo 2.5.3 接口测试框架:Swagger2 2.6.1 工具类:Apache Commons、Jackson 2.2、fastjson 1.2.20 详细介绍参考:...

    struts-2.3.1-docs

    在描述中提到的"struts-2.3.1说明文档"是开发者的重要参考资料,它提供了关于如何使用Struts2.3.1的详细信息,包括配置、动作、结果、拦截器、插件等关键概念的解释。此外,"内含struts2官方应用实例"意味着这些文档...

    Apache Shiro+SpringMVC+Hibernate Search企业信息管理系统

    7、SiteMesh 2.4 8、JQuery 1.9 9、Twitter Bootstrap 2.3.1 10、....其他技术就不讲了,具体参考项目 项目访问: 1)后台后台访问地址:http://localhost:8989/jeesite3/ 用户名:thinkgem(原作者名字)密码:...

    Freemarker使用指南

    此外,Freemarker可以与Spring MVC、Sitemesh、Struts等框架集成,具体的集成代码可参考相关工程附件。 Freemarker的常用指令和语法包括: 1. 输出内容:使用`${…}`表示插值,Freemarker会替换花括号内的表达式并...

    SSMAC整合开发.pdf

    本手册所介绍的系统主要使用了Spring4.3.0、SpringMVC4.3.0、MyBatis3.4.0、ApacheDruid1.0.20、Activiti5.21.0、Shiro1.2.5、HibernateValidator5.3.0、JqueryValidator、MySQL(mariaDB替代方案)、Sitemesh3等技术...

Global site tag (gtag.js) - Google Analytics