2

我想做的事:

我希望有一个服务器以这种方式重定向某种调用:

http://localhost:8080/myapp/api/rest/category/method

http://localhost:8090/category/api/method.

我做了什么:

我已经像这样配置了我的 Zuul 代理:

info:
  component: Simple Zuul Proxy Server

cloud:
  conablefig:
    failFast: true
    discovery:
      end: true

zuul:
  routes:
    api: /myapp/api/rest/**

server:
  port: 8080

logging:
  level:
    ROOT: INFO
    org.springframework.web: INFO
    info.tcb: DEBUG

我以这种方式使用路由过滤器:

@Slf4j
public class SimpleRouteFilter extends ZuulFilter {

    @Value("${unauthorized.url.redirect:http://localhost:8090/testcategory/api/available}")
    private String urlRedirect;

    @Override
    public String filterType() {
        return "route";
    }

    @Override
    public int filterOrder() {
        return 0;
    }

    @Override
    public boolean shouldFilter() {
        return true;
    }

    private boolean isAuthorizedRequest(HttpServletRequest request) {
        return false;
    }

    private void setRouteHost(RequestContext ctx) throws MalformedURLException {

        String urlS = ctx.getRequest().getRequestURL().toString();
        URL url = new URL(urlS);
        String protocol = url.getProtocol();
        String rootHost = url.getHost();
        int port = url.getPort();
        String portS = (port > 0 ? ":" + port : "");
        ctx.setRouteHost(new URL(protocol + "://" + rootHost + portS));
    }

    @Override
    public Object run() {
        log.debug("query interception");
        RequestContext ctx = RequestContext.getCurrentContext();
        try {
            if (isAuthorizedRequest(ctx.getRequest())) {
                log.debug("NOT redirecting...");
                setRouteHost(ctx);
            } else {
                log.debug("redirecting to " + urlRedirect + " ...");
                ctx.setRouteHost(new URL(urlRedirect));
            }
        } catch (MalformedURLException e) {
            log.error("", e);
        }
        return null;
    }
}

我在这个类中使用默认 url 只是为了测试重定向。

我的问题是,当我调用例如http://localhost:8080/myapp/api/rest/testcategory/available它以 404 结束时,但我的过滤器正在记录它执行重定向。

它只有在我打电话时才有效http://localhost:8080/myapp/api/rest/

我究竟做错了什么?为什么双 ** 不适用于所有其他呼叫?

4

0 回答 0