application.yml 687 B

123456789101112131415161718192021222324252627282930
  1. server:
  2. port: 8082
  3. spring:
  4. datasource:
  5. url: jdbc:mysql://localhost:3306/mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
  6. username: root
  7. password: root
  8. thymeleaf:
  9. mode: HTML5
  10. encoding: utf-8
  11. servlet:
  12. content-type: text/html
  13. cache: false #开发时关闭缓存,不然没法看到实时页面
  14. mybatis:
  15. mapper-locations:
  16. - classpath:mapper/*.xml
  17. - classpath*:com/**/mapper/*.xml
  18. logging:
  19. level:
  20. root: info #日志配置DEBUG,INFO,WARN,ERROR
  21. com.macro.mall: debug
  22. # file: demo_log.log #配置日志生成路径
  23. # path: /var/logs #配置日志文件名称
  24. host:
  25. mall:
  26. admin: http://localhost:8080