1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
| spring:
| application:
| name: rcs-hex
| # RabbitMQ配置
| rabbitmq:
| host: localhost
| port: 5672
| username: admin
| password: 123456
| virtual-host: /
| # 生产者确认配置
| publisher-confirm-type: correlated
| publisher-returns: true
| # 消费者配置
| listener:
| simple:
| # 手动确认模式
| acknowledge-mode: manual
| # 消费者线程数
| concurrency: 1
| # 最大消费者线程数
| max-concurrency: 5
| # 每次从队列中获取的消息数量
| prefetch: 1
| direct:
| acknowledge-mode: manual
|
|