1

我无法配置@FeignClient要使用的服务器列表。我正在使用 Spring Cloud Netflix,但此特定服务 ( foo-service) 未在 Eureka 注册。出于这个原因,我需要foo-service在 YML 文件中配置服务器列表。

但是,listOfServers永远不会读取,因此操作失败,因为 Feign/Ribbon 没有单个服务器可供使用。

我在这里做错了什么?

我的假客户:

@FeignClient(name="foo-service")
public interface FooFeignClient {

   @RequestMapping(value = "/perform-check", method = POST)
   ResponseEntity<FooResponse> performCheck(FooRequest fooRequest);

}

在 bootstrap.yml 中:

foo-service:
   ribbon:
      eureka:
         enabled: false
      listOfServers: foobox1,foobox2,foobox3

在 Spring Boot 应用程序中如何配置 Feign 客户端:

@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@EnableHazelcastClient
@EnableFeignClients
@RibbonClients({
   @RibbonClient(name = "foo-service", configuration = MyApp.FooServiceRibbonConfig.class)
})
public class MyApp {

   public static void main(String[] args) {
      SpringApplication.run(MyApp.class, args);
   }

   ....

   @Configuration
   static class FooServiceRibbonConfig {

      @Bean
      @ConditionalOnMissingBean
      public IClientConfig ribbonClientConfig() {
         DefaultClientConfigImpl config = new DefaultClientConfigImpl();
         config.loadProperties("foo-service");
         return config;
      }

      @Bean
      ServerList<Server> ribbonServerList(IClientConfig config) {
         ConfigurationBasedServerList serverList = new ConfigurationBasedServerList();
         serverList.initWithNiwsConfig(config);
         return serverList;
      }
   }
}
4

1 回答 1

0

满足您的需求的最简单方法是..

在您的代码中,删除与FooServiceRibbonConfig以下相关的所有代码。

@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@EnableHazelcastClient
@EnableFeignClients
})
public class MyApp {

   public static void main(String[] args) {
      SpringApplication.run(MyApp.class, args);
   }
   ....
}

然后更改您的配置文件,如下所示。

foo-service:
   ribbon:
      NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
      listOfServers: foobox1,foobox2,foobox3

像你一样定义ribbonServerListbean 是实现这一目标的另一种方法,我不确定你的代码为什么没有运行。就我而言,像你这样的类似代码效果很好。但是有一个更简单的方法,所以请尝试一下。

于 2017-05-18T04:10:13.607 回答