I tried something like below, M getting error [[FATAL] No injection source found for a parameter of type public Response @context UriInfo wont work as i need different data types as query param,like it may be integers and date.Kindly Help.
@GET
@Path("/getdetails")
@Produces({ "application/json", "application/xml" })
public Response getDetails(@QueryParam("field1") String fieldOne,@QueryParam("field2") List<HasMap<String,String>> fieldTwo){
//Processing
}