Domanda

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)
È stato utile?

Soluzione

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
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top