|
|
@ -10,6 +10,32 @@ server: |
|
|
|
# password: ${blade.datasource.test.password} |
|
|
|
# password: ${blade.datasource.test.password} |
|
|
|
|
|
|
|
|
|
|
|
spring: |
|
|
|
spring: |
|
|
|
|
|
|
|
#rabbitmq配置 |
|
|
|
|
|
|
|
rabbitmq: |
|
|
|
|
|
|
|
host: 192.168.2.110 |
|
|
|
|
|
|
|
port: 5672 |
|
|
|
|
|
|
|
username: admin |
|
|
|
|
|
|
|
password: Slwk@123654 |
|
|
|
|
|
|
|
#虚拟host 可以不设置,使用server默认host |
|
|
|
|
|
|
|
virtual-host: / |
|
|
|
|
|
|
|
#确认消息已发送到队列(Queue) |
|
|
|
|
|
|
|
publisher-returns: true |
|
|
|
|
|
|
|
publisher-confirm-type: correlated |
|
|
|
|
|
|
|
# 手动提交消息 |
|
|
|
|
|
|
|
listener: |
|
|
|
|
|
|
|
simple: |
|
|
|
|
|
|
|
acknowledge-mode: auto |
|
|
|
|
|
|
|
default-requeue-rejected: false |
|
|
|
|
|
|
|
retry: |
|
|
|
|
|
|
|
enabled: true # 开启消费者失败重试 |
|
|
|
|
|
|
|
initial-interval: 1000 # 初识的失败等待时长为1秒 |
|
|
|
|
|
|
|
multiplier: 1 # 失败的等待时长倍数,下次等待时长 = multiplier * last-interval |
|
|
|
|
|
|
|
max-attempts: 3 # 最大重试次数 |
|
|
|
|
|
|
|
stateless: true # true无状态;false有状态。如果业务中包含事务,这里改为false |
|
|
|
|
|
|
|
direct: |
|
|
|
|
|
|
|
acknowledge-mode: manual |
|
|
|
|
|
|
|
template: |
|
|
|
|
|
|
|
mandatory: true |
|
|
|
#排除DruidDataSourceAutoConfigure |
|
|
|
#排除DruidDataSourceAutoConfigure |
|
|
|
autoconfigure: |
|
|
|
autoconfigure: |
|
|
|
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure |
|
|
|
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure |
|
|
|