22

我想在没有客户端负载均衡器 Ribbon 的情况下使用 Feign,因为我不想运行 Eureka,它需要分布式和高可用性。相反,具有由 Route53 管理的内部 DNS 名称的内部 ELB 就可以了。

提供纯 URL 以@FeignClient始终no loadbalancer found for ..生成 ,因此我尝试阻止 Feign 使用 Ribbon:

Spring Cloud Netflix 自带FeignRibbonClient,如果ILoadBalancerfromribbon-loadbalancer存在则使用。但是,如果排除了这种依赖关系,则会FeignConfiguration被破坏:

Bean creation exception on FactoryBean type check: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'apiVersionClient': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: feign.codec.Decoder org.springframework.cloud.netflix.feign.FeignConfiguration.decoder; nested exception is java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy

欢迎提出想法:-)

4

2 回答 2

27

如果要使用纯 URL,请使用:

@FeignClient(value = "http://example.com", loadbalance = false)

使用 Brixton 发布火车,您将使用:

@FeignClient(url = "http://example.com", name = "example")
于 2014-12-26T17:20:37.300 回答
5

有点晚了,但是如果您提供自己的客户端 Bean,则在研究此问题后,LoadBalancerFeignClient 将不会被构建和使用,并且 Feign 开放跟踪自动配置仍然可以工作。

@Bean
public Client feignClient() {
    return new Client.Default(null, null);
}
于 2018-07-25T05:48:24.477 回答