#端口号 server: port: 8080 spring: application: name: portal-service #服务名称 #服务提供者 eureka: client: service-url: defaultZone: http://eureka8767:8767/eureka/,http://eureka8768:8768/eureka/,http://eureka8769:8769/eureka/ #开启feign开始hystrix的支持 feign: hystrix: enabled: true hystrix: command: default: execution: isolation: thread: timeoutInMilliseconds: 5000 #hystrix超时时间 timeout: enabled: true #开启hystrix超时管理 ribbon: ReadTimeout: 2000 #请求超时时间 http: client: enabled: true #开启ribbon超时管理 ConnectTimeout: 2000 #连接超时时间 management: endpoints: web: exposure: include: "*"