application.properties 624 B

123456789101112131415161718192021222324
  1. #数据库连接池配置
  2. spring.datasource.url=jdbc:mysql://localhost:3306/mall
  3. spring.datasource.username=root
  4. spring.datasource.password=root
  5. #mybatis配置
  6. mybatis.mapper-locations=classpath:mapper/*.xml,classpath*:com/**/mapper/*.xml
  7. #日志配置DEBUG,INFO,WARN,ERROR
  8. logging.level.root=warn
  9. #单独配置日志级别
  10. logging.level.com.macro.mall=debug
  11. #配置日志生成路径
  12. #logging.path=/var/logs
  13. #配置日志文件名称
  14. #logging.file=demo_log.log
  15. #thymeleaf start
  16. spring.thymeleaf.mode=HTML5
  17. spring.thymeleaf.encoding=UTF-8
  18. spring.thymeleaf.content-type=text/html
  19. #开发时关闭缓存,不然没法看到实时页面
  20. spring.thymeleaf.cache=false
  21. #thymeleaf end