SiteMesh简单应用

阅读更多
1.在javaweb中加入 sitemesh-2.4.2.jar
2.在webroot下建立decorators 文件夹
3.建立 装饰器文件
leftRight.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemesh/decorator" %>
<%@ taglib prefix="page" uri="http://www.opensymphony.com/sitemesh/page" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



  
    
    
    <decorator:title default="装饰器页面"/>
    
  
  
  
    
   





topbottom.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemesh/decorator" %>
<%@ taglib prefix="page" uri="http://www.opensymphony.com/sitemesh/page" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



  
    
    
    <decorator:title default="装饰器页面"/>
    
  
  
  
     




test.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



  
    
    
    使用SiteMesh框架
  
  
  
    
浪子心声
刘德华
难分真与假人面多险诈
几许有共享荣华檐畔水滴不分差
难分真与假人面多险诈
几许有共享荣华檐畔水滴不分差
难分真与假人面多险诈
几许有共享荣华檐畔水滴不分差
难分真与假人面多险诈
几许有共享荣华檐畔水滴不分差
难分真与假人面多险诈
几许有共享荣华檐畔水滴不分差
难分真与假人面多险诈
几许有共享荣华檐畔水滴不分差


moreSongs.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



  
    
    SiteMesh框架
    
  
  
  
     


5.在web-inf 下建立 decorators.xml 配置装饰器文件的修饰的请求


  
	/*  	
  	
  



6.在web.xml中加入sitemesh的框架拦截器


  
  	sitemesh
  	com.opensymphony.module.sitemesh.filter.PageFilter
  
  
  	sitemesh
  	/*
  
  
  
    index.jsp
  



7.访问 http://localhost:8080/SiteMesh/moreSongs.jsp
  • SiteMesh.zip (158.6 KB)
  • 下载次数: 29

你可能感兴趣的:(SiteMesh)