123456789101112131415161718192021222324 |
- spring:
- mvc:
- async:
- request-timeout: -1
- main:
- allow-bean-definition-overriding: true
- data:
- redis:
- host: 127.0.0.1
- port: 6379
- database: 6
- jedis:
- timeout: 5000
- pool:
- max-active: 100
- max-wait: -1
- min-idle: 10
- rocketmq:
- name-server: 127.0.0.1:9876
- consumer:
- group: web_chat
- producer:
- group: web_chat
|