application-dev.yml 964 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. server:
  2. port: 8081
  3. file:
  4. path: F:/upload/chuanyi/
  5. spring:
  6. servlet:
  7. multipart:
  8. max-file-size: 100MB
  9. max-request-size: 500MB
  10. datasource:
  11. driver-class-name: com.mysql.cj.jdbc.Driver
  12. url: jdbc:mysql://localhost:3306/ei_rptdb?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&serverTimezone=GMT%2B8
  13. username: root
  14. password: root
  15. hikari:
  16. minimum-idle: 100
  17. connection-timeout: 30000
  18. idle-timeout: 1800000
  19. maximum-pool-size: 500
  20. max-lifetime: 0
  21. resources:
  22. static-locations: classpath:/static/,,file:${file.path},file:${file.location}
  23. redis:
  24. database: 0
  25. host: 127.0.0.1
  26. port: 6379
  27. # password: 123456
  28. jedis:
  29. pool:
  30. max-active: 50
  31. max-idle: 20
  32. min-idle: 5
  33. # max-wait: 5
  34. mybatis:
  35. configuration:
  36. #开启sql日志文件
  37. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  38. logging:
  39. level:
  40. root: error