ConfigurationBasedServerList不适用于特定的微服务

时间:2019-04-03 17:15:37

标签: spring-cloud netflix-eureka feign netflix-ribbon

因此,我正在使用替代方法来调试两个特定的微服务。

我正在运行这些微服务的本地副本,并添加了以下替代。

对于第一个微服务,它似乎运行良好,但是对于第二个微服务,它却无法运行。

它们都使用伪装服务名称。

属性文件:

ab-consult-proxy.NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
ab-consult-proxy.ribbon.listOfServers: localhost:8080

ab-search.ribbon.NIWSServerListClassName:com.netflix.loadbalancer.ConfigurationBasedServerList
ab-search.ribbon.listOfServers: localhost:8025

假客户:

@FeignClient(name="ab-consult-proxy")
public interface AbControllerApiClient{

@FeignClient(name = "ab-search")
public interface AbSearchClient {

有人有什么想法吗?

0 个答案:

没有答案