I am trying to use a JAX-RS ContainerRequestFilter to add the full path template to the MDC. I am injecting the UriInfo via a @Context injection. I have tried doing this:
uriInfo.getAbsolutePathBuilder().toTemplate() But, that appears to already have the parameters resolved. Is there a way to get the full string of the request URI template with the parameter names in it?
