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