12345678910111213141516171819202122 |
- server:
- port: 8824
- # 驱动配置信息
- spring:
- cloud:
- stream:
- bindings:
- outputLog:
- destination: myLog
- outputBiLog:
- destination: myBiLog
- # contentType: text/plain # 实体 json string 在传递的类型装换 查看 http://docs.spring
- #mq
- rabbitmq:
- host: 173.18.12.191
- port: 5672
- username: root
- password: guest
- publisher-confirms: true
- virtual-host: /
|