Zuul代理同一个请求到另一个端口

时间:2017-01-10 08:08:04

标签: java spring spring-cloud netflix-zuul

我希望能够在Spring Boot服务器上运行的Zuul代理,在端口X上侦听端口Y,其中nginx正在同一台机器上侦听。我想发送相同的URL,参数等。

我这样做的原因是使用正在进行一些检查的ZuulFilter

例如,我想转到localhost:8943/humans/get/1并将请求发送到localhost:8080/humans/get/1

提前致谢。

2 个答案:

答案 0 :(得分:2)

这样的事情应该有效。

zuul:
  routes:
    humans:
      path: /humans/**
      url: http://localhost:8080

答案 1 :(得分:1)

我设法使用以下配置:

zuul:
  routes:
    services:
      path: /**  
      url: http://localhost:8043/