第三章、Themeleaf与SpringBoot集成

配置环境

Thymeleaf 3.0.3.RELEASE

Thymeleaf Layout  Dialect 2.2.0

引入依赖及其自定义的版本


	1.8
	
	3.0.3.RELEASE
	2.2.0



	org.springframework.boot
	spring-boot-starter-thymeleaf

修改application.properties(注意先修改文件的编码)

####  thymeleaf配置   #######
spring.thymeleaf.mode=HTML5
# 编码
spring.thymeleaf.encoding=UTF-8
# 类型
spring.thymeleaf.content-type=text/html
# 开发时关闭缓存,不然没法看到实时页面
spring.thymeleaf.cache=false
# 默认路径
spring.thymeleaf.prefix=classpath:/templates/
# 后缀
spring.thymeleaf.suffix=.html
# 启用MVC Thymeleaf视图分辨率
spring.thymeleaf.enabled=true

你可能感兴趣的:(第三章、Themeleaf与SpringBoot集成)