12345678910111213141516171819202122232425262728 |
- server:
- port: 8823
- # 驱动配置信息
- spring:
- cloud:
- stream:
- bindings:
- outputLog:
- destination: myLog
- # contentType: text/plain # 实体 json string 在传递的类型装换 查看 http://docs.spring
- outputBiLog:
- destination: myBiLog
- #mq
- rabbitmq:
- host: 192.168.2.236
- port: 5672
- username: lantone
- password: lantone
- publisher-confirms: true
- virtual-host: /
- # 配置缓存,初始缓存容量,最大容量,过期时间(这里配置写入后过期时间10小时)
- cache:
- type: caffeine
- caffeine:
- spec: initialCapacity=10,maximumSize=200,refreshAfterWrite=36000s
|