123456789101112131415161718192021 |
- spring:
- application:
- name: product-service
- cloud:
- config:
- uri: http://config.rankin.com:8921
- label: master
- profile: ${profile:dev}
-
- server:
- port: 8100
- feign:
- httpclient:
- enabled: true
- hystrix:
- enabled: false
- #logging:
- # level:
- # root: debug
|