spring-boot-starter-thymeleaf的yml配置 代码写出来
时间: 2023-11-27 13:05:43 浏览: 75
spring boot thymeleaf整合代码
以下是一个基本的spring-boot-starter-thymeleaf的yml配置:
```yml
spring:
thymeleaf:
prefix: classpath:/templates/
suffix: .html
cache: false
mode: HTML
```
其中,`prefix`表示模板文件所在的路径,`suffix`表示模板文件的后缀名,`cache`表示是否开启缓存,`mode`表示模板模式(默认为HTML)。
阅读全文