Thymeleaf

Posted ksea

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thymeleaf相关的知识,希望对你有一定的参考价值。

Thymeleaf

一、入门启动

  • 流程:添加pom依赖-添加控制器-html添加头文件-编辑properties文件

  • pom依赖
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-thymeleaf</artifactId> 
</dependency>

  • 控制器

  • html修改
  1. 声明当前文件为thymeleaf
  2. 前端文件存于templates中
<html xmlns:th="http://www.thymeleaf.org">

  • properties
#thymeleaf 配置
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#缓存设置为false, 这样修改之后马上生效,便于调试
spring.thymeleaf.cache=false
#上下文
server.context-path=/thymeleaf

以上是关于Thymeleaf的主要内容,如果未能解决你的问题,请参考以下文章

Thymeleaf,片段和默认参数

Thymeleaf引用片段传入参数

Spring MVC 3.2 Thymeleaf Ajax 片段

thymeleaf引入公共页面的某个片段

11SpringBoot-CRUD-thymeleaf公共页面元素抽取

Thymeleaf 模板 - 有没有办法装饰模板而不是包含模板片段?