Spring boot模板引擎

Thymeleaf

SpringBoot推荐Thymeleaf模板引擎
语法更简单,功能更强大
Spring boot模板引擎_第1张图片
引入thymeleaf

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-thymeleafartifactId>
dependency>

不加版本号
默认版本为2.1.6
Spring boot模板引擎_第2张图片

切换版本

节点,添加引用的版本

.version>3.0.9.RELEASE.version>
.version>2.2.2.version>

注意

布局功能的支持程序 thymeleaf3主程序
需要layout2以上版本

thymeleaf2对应于layout1
layout从2.0.0开始,为thymeleaf3设计

网址
https://github.com/ultraq/thymeleaf-layout-dialect/releases?after=2.0.3
Spring boot模板引擎_第3张图片

你可能感兴趣的:(————Spring,Boot)