You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So all JAX-RS paths are relative to /rest either if I use @Path("/resource") it will be mapped to /rest/resource. So in documentation path should be /rest/resource instead of /resource as it is now.
Maybe it works fine if servlet-mapping is set for javax.ws.rs.core.Application to /rest/*, I haven't tested.
The text was updated successfully, but these errors were encountered:
Support
JAX-RS
paths prefixing set in@ApplicationPath("/rest")
annotation.In code I have something like:
So all
JAX-RS
paths are relative to/rest
either if I use@Path("/resource")
it will be mapped to/rest/resource
. So in documentation path should be/rest/resource
instead of/resource
as it is now.Maybe it works fine if
servlet-mapping
is set forjavax.ws.rs.core.Application
to/rest/*
, I haven't tested.The text was updated successfully, but these errors were encountered: