webchat-user-service-dev.yaml 497 B

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