Description
A root resource with @Path("/") and a subresource method/locator will not match.
@Path("/") public class Root { @GET @Path("hello") public String getHelloWorld() { return "Hello world"; } }
And issuing a GET to /hello would result in a 404.