Closed andrus closed 1 year ago
When an endpoint has both @UriInfo and explicit protocol parameters, duplicate parameters are generated. E.g.:
@UriInfo
@GET @Path("x") public Response getX( @QueryParam("include") List<String> includes, @QueryParam("exclude") List<String> excludes, @Context UriInfo uriInfo )
When an endpoint has both
@UriInfo
and explicit protocol parameters, duplicate parameters are generated. E.g.: