123456789101112131415161718 |
- server:
- port: 8888
- spring:
- application:
- name: consumer
- dubbo: #统一配置
- application:
- logger: slf4j
- qos-enable: false
- registry:
- address: nacos://${nacos.address:127.0.0.1}:8848
- protocol: #协议 消费者端可不配置
- name: tri #远triple协议
- port: 20881 #端口
- consumer:
- #远程服务调用重试次数,不包括第一次调用,不需要重试请设为0
- retries: 2
- check: false
|