Я смог добиться этого, написав следующий фильтр:
@Override
public String filterType() {
return PRE_TYPE;
}
@Override
public int filterOrder() {
return PRE_DECORATION_FILTER_ORDER + 1;
}
public Object run() {
RequestContext ctx = getCurrentContext();
ctx.put(REQUEST_URI_KEY, "/test/");
try {
if (new Random().nextInt(10) > 5) {
ctx.setRouteHost(new URL("http://192.168.1.14:8088"));
} else {
ctx.setRouteHost(new URL("http://192.168.1.14:8089"));
}
} catch (MalformedURLException e) {
log.error("", e);
}
return null;
}
мое application.properties выглядит так:
spring.application.name=zuul-server
server.port=8080
management.endpoints.web.exposure.include=*
zuul.routes.test.path=/test/**