Question

ResourceContext.matchResource(URI) allows me to convert a URI to a Resource, but how do I go from a Resource to its URI?

Was it helpful?

Solution

Answering my own question:

@Context UriInfo uriInfo;

public URI getUri()
{
  return uriInfo.getBaseUriBuilder().path(MyResource.class).build();
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top