关于SpringCloud配置网关转发时出现一下啊错误:“com.netflix.zuul.exception.ZuulException: Forwarding error at org.springframework.cloud.netflix.zuul.filters.route.RibbonRoutingFilter.handleException”

时间:2024-06-21 08:37:20

com.netflix.zuul.exception.ZuulException: Forwarding error at org.springframework.cloud.netflix.zuul.filters.route.RibbonRoutingFilter.handleException

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

这几行是主要报原因

解决办法:

在GateWay 的Module中的pom.xml中导入以下依赖

<dependency>

    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency> 问题解决