webchat-user-service-dev.yaml 651 B

12345678910111213141516171819202122232425262728
  1. spring:
  2. main:
  3. allow-bean-definition-overriding: true
  4. datasource:
  5. url: jdbc:mysql://127.0.0.1:3306/webchat_user?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2b8&allowPublicKeyRetrieval=true
  6. username: root
  7. password: 12345678
  8. driver-class-name: com.mysql.jdbc.Driver
  9. hikari:
  10. maximum-pool-size: 50
  11. jpa:
  12. show-sql: true
  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
  24. rocketmq:
  25. producer:
  26. group: web_chat
  27. name-server: 127.0.0.1:9876