Frage

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)
War es hilfreich?

Lösung

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
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top