Thymeleaf 依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
默认的配置足够了,不需要改了。
模板继承
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
layout:decorator="layout">
<div class="container"layout:fragment="content"></div>
layout:fragment="content" 是子类引用layout 模板 预定义的模板接口
网友评论