In the web service I\'m working on, I need to implement a URI with query parameters which look like /stats?store=A&store=B&item=C&item=D
/stats?store=A&store=B&item=C&item=D
To
List items=ui.getQueryParameters().get("item");
where ui is declared as a member in the rest resource like so :
ui
@Context UriInfo ui;
the downside is that it doesn't appear in the methods arguments at all.