Sitemesh簡介
Sitemesh是由一個基於Web頁面佈局、裝飾及與現存Web應用整合的框架,是裝飾器。它能幫助我們在由大量頁面工程的專案中創建一致的頁面佈局和外觀,如一致的導航條、一致的banner、一致的版權等。
SiteMesh是基於Servlet的filter的,它透過截取response,並進行裝飾後再交付給客戶端。
spring boot 整合sitemesh
整合要做的工作很簡單:
1、引入sitemesh.jar套件
#2 、新增一個配置類別及過濾器類別
3、新增一個裝飾器頁面
2.1、引入sitemesh.jar套件
在maven的pom檔案中引入:
<dependency> <groupId>org.sitemesh</groupId> <artifactId>sitemesh</artifactId> <version>3.0.1</version> </dependency>
配置類別及過濾器類別
配置類別如下:
import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; //生效配置,使之就像传统项目里sping的xml配置文件一样 @Configuration public class WebConfig extends WebMvcConfigurerAdapter{ //注册成bean,就像传统项目spring配置文件中的<bean>标签 @Bean public FilterRegistrationBean siteMeshFilter(){ FilterRegistrationBean fitler = new FilterRegistrationBean(); //实例化一个过滤器类 WebSiteMeshFilter siteMeshFilter = new WebSiteMeshFilter(); fitler.setFilter(siteMeshFilter); return fitler; } } 过滤器类如下: import org.sitemesh.builder.SiteMeshFilterBuilder; import org.sitemesh.config.ConfigurableSiteMeshFilter; public class WebSiteMeshFilter extends ConfigurableSiteMeshFilter{ @Override protected void applyCustomConfiguration(SiteMeshFilterBuilder builder) { //除了/admin/index和/admin/login页面外,其他所有/admin/下的页面都被/admin/index页面所装饰 builder.addDecoratorPath("/admin/*", "/admin/index") .addExcludedPath("/admin/index") .addExcludedPath("/admin/login"); } }
裝飾器頁面
#裝飾器頁面就是模板頁面,過濾器規則中定義的頁面都會被該頁面所裝飾。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <title>装饰器页面</title> </head> <body> ... <div id="content"> <sitemesh:write property='body' /> </div> </body> </html>
有了上面的裝飾器頁面,當我們訪問被裝飾的頁面比如/admin/test,展現的內容是裝飾器頁面被裝飾頁面的body元素內的內容,c1fca411e925f249b944fae6769e57de處會被替換為被裝飾頁面的body元素內的內容。假設,test頁面如下:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <title>test页面</title> </head> <body> <h1>我是test</h1> </body> </html>###最終得到的頁面是:###
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <title>装饰器页面</title> </head> <body> ... <div id="content"> <h1>我是test</h1> </div> </body> </html>
以上是spring boot整合sitemesh的詳細內容。更多資訊請關注PHP中文網其他相關文章!