Feign消费者微服务无法调用生产者微服务问题,报错Feign com.netflix.client.ClientException: Load balancer does not have available server for client:
如图,使用feign来替代RestTemplate调用生产者微服务,一直报错,按照网上的办法添加
ribbon:
eureka:
enabled: true
也没用,最后对比了之前写的feign消费者微服务,发现在application.yml
中手贱多写了eureka客户端的配置信息
将这两个配置信息注释掉,再重新启动,发现能够正常调用了