Spring Cloud: How to use Feign without Ribbon
问题 I would like to use Feign without client-side loadbalancer Ribbon because I don't want to run Eureka, which would need to be distributed and highly available. Instead internal ELBs with internal DNS names managed by Route53 will do just fine. Providing plain URLs to @FeignClient always results in no loadbalancer found for .. , so I tried preventing Feign from using Ribbon: Spring Cloud Netflix comes with FeignRibbonClient , which is used if ILoadBalancer from ribbon-loadbalancer is present.