I am using Jersey v1.x and a Guice Servlet.
What I'm trying to do is bind a Jersey Resource that matches any @Path
, such that I can use Jersey to respond with a 404.
I'm looking to do this, since my servlet consists of different components (e.g. a rest API that lives under /api
, and a web UI that lives under /
.
In Guice terms, that means I have several ServletModule
s that each set up one part of the servlet:
- In my
ApiServletModule
:serve("/api").with(GuiceContainer.class, conf)
- In my
WebUiServletModule
:serve("/").with(GuiceContainer.class, conf)
In this setup, I want to define what the 404 response body looks like for each part of the webapp (/api
or /
) from the codebase of each subproject responsible, without having to reimplement Jersey
So far I have tried to bind a resource that match @Path("/")
, @Path("*")
and @Path("/*")
, but none of these seem to be picked up when I request /some/path/that/doesnt/exist