FEBS-Auth-dev.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. spring:
  2. datasource:
  3. dynamic:
  4. hikari:
  5. connection-timeout: 30000
  6. max-lifetime: 1800000
  7. max-pool-size: 15
  8. min-idle: 5
  9. connection-test-query: select 1
  10. pool-name: FebsHikariCP
  11. primary: base
  12. datasource:
  13. base:
  14. username: root
  15. password: 123456
  16. driver-class-name: com.mysql.cj.jdbc.Driver
  17. url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8
  18. jackson:
  19. date-format: yyyy-MM-dd HH:mm:ss
  20. time-zone: GMT+8
  21. boot:
  22. admin:
  23. client:
  24. url: http://${febs-monitor-admin}:8401
  25. username: febs
  26. password: 123456
  27. redis:
  28. database: 0
  29. host: ${redis.url}
  30. port: 6379
  31. lettuce:
  32. pool:
  33. min-idle: 8
  34. max-idle: 500
  35. max-active: 2000
  36. max-wait: 10000
  37. timeout: 5000
  38. mybatis-plus:
  39. type-aliases-package: cc.mrbird.febs.common.entity.system
  40. mapper-locations: classpath:mapper/*.xml
  41. configuration:
  42. jdbc-type-for-null: null
  43. global-config:
  44. banner: false
  45. info:
  46. app:
  47. name: ${spring.application.name}
  48. description: "@project.description@"
  49. version: "@project.version@"
  50. management:
  51. endpoints:
  52. web:
  53. exposure:
  54. include: '*'
  55. endpoint:
  56. health:
  57. show-details: ALWAYS