com.netflix.client.ClientException: Load balancer does not have available server for client xxxx

版本

spring boot: 2.0.1.RELEASE

spring cloud: Finchley.M9

错误

通过zuul调用eureka注册的服务,错误内容如下

Caused by: com.netflix.client.ClientException: Load balancer does not have available server for client xxxxx

方案

经过查询排查,两种解决方案

方案一(亲测有效)

在application.properties中添加

ribbon.eureka.enable: true

方案二

  添加依赖(有待测试)

  
    org.springframework.cloud  
    spring-cloud-starter-eureka  
  

方案因为版本问题,没有测试,仅供参考

你可能感兴趣的:(【项目实践】)