二、集成 Thymeleaf 模板引擎
SpringBoot 对 Thymeleaf 模板引擎的支持也很简单:
【一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义】
浏览器打开:qq.cn.hn/FTf 免费领取
1、pom.xml
org.springframework.boot
spring-boot-starter-thymeleaf
这时候,SpringBoot 对 Thymeleaf 模板的支持就完成了,我们就能在 Web 开发中使用 Thymeleaf 模板了,简单吧?
之前的文章有提到 SpringBoot 的关键是 “约定俗成”。既然我们选择了这么简单的配置,那么在开发中就要遵守 SpringBoot 对 Thymeleaf 约定俗成的方案,最重要的一点就是 模板文件放在 templates 目录下,即模板解析器前缀是 /templates/ ,后缀是 .html 。
**2、**application.yml
如果不想要所谓约定俗成的方案,想进行一些自定义的配置呢?且看下方:
spring: thymeleaf: prefix: classpath:/templates/ suffix: .html servlet:
content-type: text/html enabled: true encoding: UTF-8 mode: HTML5 cache: false