webchat-pay-service-dev.yaml 635 B

1234567891011121314151617181920212223
  1. #---------------------------------数据库配置----------------------------------#
  2. spring:
  3. datasource:
  4. url: jdbc:mysql://127.0.0.1:3306/webchat_payment?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2b8&allowPublicKeyRetrieval=true
  5. username: root
  6. password: 12345678
  7. driver-class-name: com.mysql.jdbc.Driver
  8. hikari:
  9. maximum-pool-size: 50
  10. jpa:
  11. show-sql: true
  12. # set redis config
  13. data:
  14. redis:
  15. host: 127.0.0.1
  16. port: 6379
  17. database: 6
  18. jedis:
  19. timeout: 5000
  20. pool:
  21. max-active: 100
  22. max-wait: -1
  23. min-idle: 10