spring boot中thymeleaf配置说明

spring boot中thymeleaf配置说明


thymeleaf是一种模板引擎,可以查看页面的静态效果,也可以让程序员在服务器查看带数据的动态页面效果。

  • 引入依赖,在pom.xml文件添加以下内容。
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  • 在application.yml的配置文件里加入以下内容
thymeleaf:
	cache: false # 关闭页面缓存
	encoding: UTF-8 # 模板编码
	prefix: classpath:/templates/  # 页面映射路径
	suffix: .html # 构建URL时附加到查看名称的后缀
	mode: HTML5 # 模板模式

cache属性默认值是true,把他设置为false,便于我们进行调试,不必每次修改都重启一遍项目。
encoding属性是模板编码
prefix属性是页面映射路径
suffix属性是构建URL时附加到查看名称的后缀
mode属性是模板模式

注意:.yml与.properties文件均是spring boot的配置文件,其中.yml注重缩进和空格,通过缩进来表示父子级关系

上一篇:Thymeleaf前后端传值 页面取值与js取值


下一篇:springboot整合Thymeleaf