application.yml 377 B

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