| 1234567891011121314151617181920212223 |
- spring:
- rabbitmq:
- host: 192.168.100.32
- port: 5672
- username: guest
- password: guest
- virtual-host: netpump
- cloud:
- bus:
- enabled: true # 是否开启,默认为 true
- # stream:
- # bindings:
- # #短信发送通道名称
- # exEventBusProducer-out-0:
- # #交换机名称
- # destination: eventBus
- # exEventBusConsumer-in-0:
- # destination: eventBus
- # group: tr
- # function:
- # definition: exEventBusProducer;exEventBusConsumer
- application:
- name: eventBus
|