您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關spring boot集成sitemesh是什么的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
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元素內的內容,<sitemesh:write property='body' />處會被替換為被裝飾頁面的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> <h2>我是test</h2> </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"> <h2>我是test</h2> </div> </body> </html>
感謝各位的閱讀!關于spring boot集成sitemesh是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。