我想做什么:
我希望有一台服务器以这种方式重定向某种呼叫:
http://localhost:8080/myapp/api/rest/category/method
in
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;
}
}
我在此课程中使用默认网址仅用于测试重定向。
我的问题是,当我调用示例http://localhost:8080/myapp/api/rest/testcategory/available
时,它会以404结尾,但我的过滤器会记录它执行重定向。
仅在我致电http://localhost:8080/myapp/api/rest/
时才有效。
我做错了什么? 为什么双**不适用于所有其他电话?