application.yml 353 B

1234567891011121314151617
  1. spring:
  2. profiles:
  3. active: development
  4. ##############################################
  5. #
  6. # thymeleaf静态资源配置
  7. #
  8. ##############################################
  9. # 默认路径
  10. spring.thymeleaf.prefix: classpath:/templates/
  11. # 后缀
  12. spring.thymeleaf.suffix: .html
  13. # 模板格式
  14. spring.thymeleaf.mode: HTML5
  15. spring.thymeleaf.encoding: UTF-8