I have some microservices discovered with Eureka. Most of them provide some API. And I have "edge" service called "Gateway service" which is Zuul Proxy actually. The thing is that there is a web application. It was hosted by gateway service for a long time and there was not any problem with that. But right now I need to host this client on separate service behind gateway. It's not a problem. I created new service and put web application there. But the thing is that Zuul on gateway service have next configuration
zuul:
ignoredServices: '*'
prefix: /api
sensitiveHeaders: Cookie, Set-Cookie
routes:
config-service:
path: /conf/**
serviceId: config-service
security-service:
path: /security/**
serviceId: security-service
stripPrefix: false
request-service:
path: /requests/**
stripPrefix: false
I need to do so that user able to access web application from a root path like this http://app.com/
.
But right now I can access it only by http://app.com/api/
which is completely incorrect.
My task is:
/api
prefix remain for all other services.I tried to implement ZuulFilter
. But looks like it does nothing with root path and runs only when there is match with any routes described above.
How can I make this work?
UPDATE: I have a little success with ZuulFilter
. I made it work. Here is configuration of Zuul:
zuul:
ignoredServices: '*'
sensitiveHeaders: Cookie, Set-Cookie
routes:
api: /api/**
config-service:
path: /conf/**
serviceId: config-service
security-service:
path: /security/**
serviceId: security-service
stripPrefix: false
request-service:
path: /requests/**
stripPrefix: false
frontend-host-service:
path: /**
And ZuulFilter
itself
@Bean
public ZuulFilter apiPrefixStrip(RouteLocator routeLocator) {
return new ZuulFilter() {
@Override
public String filterType() {
return "pre";
}
@Override
public int filterOrder() {
return 0;
}
@Override
public boolean shouldFilter() {
RequestContext context = RequestContext.getCurrentContext();
return context.getRequest().getRequestURI().startsWith("/api");
}
@Override
public Object run() {
RequestContext context = RequestContext.getCurrentContext();
String path = context.getRequest().getRequestURI();
Route route = routeLocator.getMatchingRoute(path.substring(4));
if (route != null) {
context.put("proxy",route.getId());
context.put("requestURI", route.getPath());
context.set("serviceId", route.getLocation());
}
return null;
}
};
}
How this work:
there is property zuul.routes.api=/api/**
which does not do anything actually. It just allows to map all matched paths to Zuul filter chain (described in documentation). All other routes described here is set like there is no /api
at all. It allows to reach services like this: http://app.com/requests
e.g. for request service.
The ZuulFilter
performs check for every request described in properties but it runs only if the requested URI starts with /api
and it redirects this request same way like there is no any /api
in path.
It works really. But I still dont like this solution because there are endpoints without /api
prefix still remain on gateway service. May be anybody knows how to improve it?
I would do the following:
zuul.prefix
property.to all of your
zuul.routes.*.path` properties.app:
path: /**
stripPrefix: false
(3) is very important as the order of the routes here matters. This is the order that incoming requests will evaluate whether or not a route matches. It is also important that you do this in yaml, as order will be preserved, where it might not be with a properties file (according to the documentation).