FEBS-Auth-prod.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. password: 123456
  32. lettuce:
  33. pool:
  34. min-idle: 8
  35. max-idle: 500
  36. max-active: 2000
  37. max-wait: 10000
  38. timeout: 5000
  39. mybatis-plus:
  40. type-aliases-package: cc.mrbird.febs.common.entity.system
  41. mapper-locations: classpath:mapper/*.xml
  42. configuration:
  43. jdbc-type-for-null: null
  44. global-config:
  45. banner: false
  46. info:
  47. app:
  48. name: ${spring.application.name}
  49. description: "@project.description@"
  50. version: "@project.version@"
  51. management:
  52. endpoints:
  53. web:
  54. exposure:
  55. include: '*'
  56. endpoint:
  57. health:
  58. show-details: ALWAYS