zuul多个网址一条路径

时间:2017-06-07 15:50:12

标签: spring-cloud netflix-zuul netflix-ribbon

您好我有一条可以有多台服务器的路线......

我试过以下没有运气:

zuul.routes.example.path=/example/**
zuul.routes.example.serviceId=example
example.ribbon.eureka.enabled=false
example.ribbon.eureka.listOfServers=http://127.0.0.1/metrics,http://127.0.0.1/info

这只会返回以下错误:

  

引起:com.netflix.client.ClientException:负载均衡器没有客户端的可用服务器:示例

我在大多数路线上使用尤里卡,但特别是对于这个路线,我不能使用尤里卡。

是否有可能让zuul在两个网址之间实现负载均衡?

解决

下面的答案用config解决了这个问题,不过我提到我使用的是spring-boot-starter-parent,我还必须将依赖管理升级到Camden.SR7

<dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-dependencies</artifactId>
<!--         <version>Brixton.SR5</version> -->
        <version>Camden.SR7</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

1 个答案:

答案 0 :(得分:3)

是的,你可以。请尝试使用以下属性而不是您的属性。

zuul.routes.example.path=/example/**
zuul.routes.example.serviceId=example
example.ribbon.NIWSServerListClassName=com.netflix.loadbalancer.ConfigurationBasedServerList
example.ribbon.listOfServers=http://127.0.0.1/metrics,http://127.0.0.1/info