I want to know how I can extract a List as response from the jersey-2.0 client.
List
jersey-2.0
I have already tried this,
Li
1) Take your Response in the then parse the Response Object using readEntity() method.
List list = client.target(url). request(MediaType.APPLICATION_JSON).get(Response.class).readEntity(new GenericType>() { });