我希望能够与在Spring Boot服务器上运行的Zuul进行代理,以监听端口X到Nginx在同一台机器上监听的端口Y。我想发送相同的URL,参数等。

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

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

提前致谢。

最佳答案

这样的事情应该起作用。

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

09-08 07:56