SpringBoot15:在yml文件中设置thymeleaf的相关配置

 一般是在spring前缀下进行相关设置,具体可以参照引入包的时候,属于那个项目,即可查看出在那个前缀下进行配置

#spring配置
spring:
  mvc:
    servlet:
      load-on-startup: 1
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/springbootssm?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8
    username: root
    password: 123456
  thymeleaf:
    cache: false #关闭缓存
    mode: HTML5 #设置模板类型
    encoding: utf-8  #设置编码

 

你可能感兴趣的:(SpringBoot)