Pergunta

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

Foi útil?

Solução

Answering my own question:

@Context UriInfo uriInfo;

public URI getUri()
{
  return uriInfo.getBaseUriBuilder().path(MyResource.class).build();
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top