页面装饰技术—SiteMesh

2023-12-13 17:32
文章标签 技术 页面 装饰 sitemesh

本文主要是介绍页面装饰技术—SiteMesh,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一,基本概念
1,Sitemesh是一种页面装饰技术 :
1  :它通过过滤器(filter)来拦截页面访问
2  :根据被访问页面的URL找到合适的装饰模板
3  :提取被访问页面的内容,放到装饰模板中合适的位置
4  :最终将装饰后的页面发送给客户端。
2,在sitemesh中,页面分为两种:装饰模板和普通页面。
1)装饰模板,是指用于修饰其它页面的页面。
2)普通页面,一般指各种应用页面。
3,接下来,我们通过一个简单的例子来说明一下sitemesh修饰网页的基本原理。
二,模板修饰网页的原理







通过Sitemesh的注册机制,告诉Sitemesh,当访问该路径时使用XXX模板(假定使用前面那个模板)来修饰被访问页面。



当用户在左边导航栏点击“戏说长城”( /ShowGreatWall.do)时,右边的“戏说长城”页面将会被指定的模板修饰



总结上面过程,Sitemesh修饰网页的基本原理,可以通过下面来说明:



三,Sitemesh的配置与使用
1)WEB-INF/web.xml中加入filter定义与sitemesh的taglib定义
      < 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>

     <taglib>
          <taglib-uri>sitemesh-decorator</taglib-uri>
          <taglib-location>/WEB-INF/sitemesh-decorator.tld</taglib-location>
     </taglib>
     <taglib>
          <taglib-uri>sitemesh-page</taglib-uri>
          <taglib-location>/WEB-INF/sitemesh-page.tld</taglib-location>
     </taglib> 
2)创建WEB-INF/decorators.xml,在该文件中配置有哪些模板,以及每个模板具体修饰哪些URL,另外也可以配置哪些URL不需要模板控制 , decorators.xml的一个例子如下:
< excludes >
< pattern > /Login* </ pattern >
</ excludes >

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

    
< decorator  name =“pop"  page =“PopPage.jsp">
        
<pattern > /showinfo.jsp* </ pattern >
        
< pattern >
              /myModule/GreatWallDetailAction.do*
        
</ pattern >
    
</ decorator >
</ decorators >
3)我们看一个修饰模板的例子
< %@page  contentType ="text/html;?charset=GBK" % >
< %@taglib  uri ="sitemesh-decorator" ?prefix ="decorator"  % >

< html >
    
< head >
         
< title < decorator:title /> </ title >
         
<decorator:head/>
    
</ head >

    
< body >
        Hello World  
< hr />
        
<decorator:body/>
    
</ body >
</ html >  
4)我们看一个被修饰的页面的例子:
< %@ page  contentType ="text/html;?charset=GBK" % >
< html >
    
< head >
        
< title > Hello World </ title >
    
</ head >

    
< body >
        
< p > Decorated page goes here. </ p
    </body
>
</ html >  
5)我们看一下装饰模板中可以使用的Sitemesh标签 
< decorator:head  />
取出被装饰页面的head标签中的内容。
< decorator:body  />
取出被装饰页面的body标签中的内容。
< decorator:title  default =""    />
取出被装饰页面的title标签中的内容。default为默认值
< decorator:getProperty  property =""  default =""   writeEntireProperty ="" />
取出被装饰页面相关标签的属性值。
writeEntireProperty表明,是显示属性的值还是显示“属性=值”
Html标签的属性
Body标签的属性
Meta标签的属性
注意如果其content值中包含“>或 < ”会报错,需转码,例如&lt ;等等
default是默认值
< decorator:usePage  id =""   />
将被装饰页面构造为一个对象,可以在装饰页面的JSP中直接引用
6)看一个在装饰模板中使用标签的例子
< html  lang =“ <decorator:getProperty  property =‘lang’/> ”>
    
<head >
        
< title >   <decorator:title default=“你好”  /> </ title >
        
<decorator:head />
    
</ head >
    
    
< body  <decorator:getProperty property=“body.onload" writeEntireProperty =“1"/> >
         
从meta中获取变量company的名称:
             <decorator:getProperty property
=“meta.company”/>

            
下面是被修饰页面的body中的内容:
             <decorator:body 
/>

         
<decorator:usePage id=“myPage" />

         
<%=myPage.getRequest().getAttribute(“username”)%>
    
</ body >
</ html >
7)看一下相应的在被修饰页面中的代码:
< html  lang =“en”>
    
<head >
        
< title > 我的sitemesh </ title >
        
< meta  name =“company”  content =“smartdot”/>
        
<meta name =“Author”  content =“zhangsan”/>
        
<script >
             function count(){return 10;}
        
</ script >
    
</ head >

    
< body  onload =“count()”>
         
<p > 这是一个被修饰页面 </ p >
    
</ body >
</ html >
四,总结

1,Sitemesh最为重要的就是做用于修饰的模板,并在decorators.xml中配置这些模板用于修饰哪些页面。因此使用Sitemesh的主要过程就是: 做装饰模板,然后 在decorators.xml中配置URL Pattern

2,分析整个工程,看哪些页面需要抽象成模板,例如二级页面、三级页面、弹出窗口等等可能都需要做成相应的模板,一般来说,一个大型的OA系统,模板不会超过8个。
— — —— — — — — — — — — — — — — — — — — — — — — —
如果某个特殊的需求请求路径在过滤器的范围内,但又不想使用模板怎么办?
你总不能这么不讲道理吧!
        大家放心吧,SiteMesh早就考虑到这一点了,上面第5步说道的decorators.xml这个时候就起到作用了!
       

下面是我的decorators.xml:
<? xml version ="1.0" encoding ="ISO-8859-1" ?>
< decorators defaultdir ="/decorators" >
    <!--  Any urls that are excluded will never be decorated by Sitemesh -->
     < excludes >
         < pattern >/index.jsp* </ pattern >
           < pattern >/login/* </ pattern >
     </ excludes >
     < decorator name ="main" page ="main.jsp" >
         < pattern >/* </ pattern >
     </ decorator >
</ decorators >
decorators.xml有两个主要的结点:
      decorator结点指定了模板的位置和文件名,通过pattern来指定哪些路径引用哪个模板
      excludes结点则指定了哪些路径的请求不使用任何模板
如上面代码,/index.jsp和凡是以/login/开头的请求路径一律不使用模板;
另外还有一点要注意的是:decorators结点的defaultdir属性指定了模板文件存放的目录;

这篇关于页面装饰技术—SiteMesh的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/489315

相关文章

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca

金融业开源技术 术语

金融业开源技术  术语 1  范围 本文件界定了金融业开源技术的常用术语。 本文件适用于金融业中涉及开源技术的相关标准及规范性文件制定和信息沟通等活动。

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出 在数字化时代,文本到语音(Text-to-Speech, TTS)技术已成为人机交互的关键桥梁,无论是为视障人士提供辅助阅读,还是为智能助手注入声音的灵魂,TTS 技术都扮演着至关重要的角色。从最初的拼接式方法到参数化技术,再到现今的深度学习解决方案,TTS 技术经历了一段长足的进步。这篇文章将带您穿越时

系统架构设计师: 信息安全技术

简简单单 Online zuozuo: 简简单单 Online zuozuo 简简单单 Online zuozuo 简简单单 Online zuozuo 简简单单 Online zuozuo :本心、输入输出、结果 简简单单 Online zuozuo : 文章目录 系统架构设计师: 信息安全技术前言信息安全的基本要素:信息安全的范围:安全措施的目标:访问控制技术要素:访问控制包括:等保

前端技术(七)——less 教程

一、less简介 1. less是什么? less是一种动态样式语言,属于css预处理器的范畴,它扩展了CSS语言,增加了变量、Mixin、函数等特性,使CSS 更易维护和扩展LESS 既可以在 客户端 上运行 ,也可以借助Node.js在服务端运行。 less的中文官网:https://lesscss.cn/ 2. less编译工具 koala 官网 http://koala-app.

Spring的设计⽬标——《Spring技术内幕》

读《Spring技术内幕》第二版,计文柯著。 如果我们要简要地描述Spring的设计⽬标,可以这么说,Spring为开发者提供的是⼀个⼀站式的轻量级应⽤开发框架(平台)。 作为平台,Spring抽象了我们在 许多应⽤开发中遇到的共性问题;同时,作为⼀个轻量级的应⽤开发框架,Spring和传统的J2EE开发相⽐,有其⾃⾝的特点。 通过这些⾃⾝的特点,Spring充分体现了它的设计理念:在

java线程深度解析(六)——线程池技术

http://blog.csdn.net/Daybreak1209/article/details/51382604 一种最为简单的线程创建和回收的方法: [html]  view plain copy new Thread(new Runnable(){                @Override               public voi

java线程深度解析(二)——线程互斥技术与线程间通信

http://blog.csdn.net/daybreak1209/article/details/51307679      在java多线程——线程同步问题中,对于多线程下程序启动时出现的线程安全问题的背景和初步解决方案已经有了详细的介绍。本文将再度深入解析对线程代码块和方法的同步控制和多线程间通信的实例。 一、再现多线程下安全问题 先看开启两条线程,分别按序打印字符串的

Python中的属性装饰器:解锁更优雅的编程之道

引言 在Python的世界里,装饰器是一个强大的工具,它允许我们以一种非侵入性的方式修改函数或方法的行为。而当我们谈论“属性装饰器”时,则是在探讨如何使用装饰器来增强类中属性的功能。这不仅让我们的代码更加简洁、易读,同时也提供了强大的功能扩展能力。本文将带你深入了解属性装饰器的核心概念,并通过一系列实例展示其在不同场景下的应用,从基础到进阶,再到实际项目的实战经验分享,帮助你解锁Python编程