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