Question

Is it possible to pass a list of Integers into a HttpPost/HttpGet/HttpPut etc, and have it passed into the resource?

public <ReturnType> methodName(@<Jersey annotation> List<Object> objects)
Was it helpful?

Solution

Something like this?

@GET
@Path("/resource")
public Response restMethod(@QueryParam("num") List<Integer> ints)

Which can then be called like:

http://localhost/resource?num=1&num=2&num=3
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top