SpringBoot-Thymeleaf的布局框架: thymeleaf-layout-dialect
<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
<version>2.0.2</version>
</dependency>12345
使用layout:fragment=”“表示
<div th:replace="layout/header :: header"></div>
<div th:replace="layout/left :: left"></div>
<div layout:fragment="content" > content</div>
<div th:replace="layout/footer :: footer"></div>
使用layout:decorator=”“指定要使用的模版
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
layout:decorate="layout">
在内容部分,同样使用layout:fragment=”“来指定要将片段输出在模版的位置
<div layout:fragment="content" >
<h2>模板内容</h2>
</div>