是否可以将整数列表传递给HttpPost / HttpGet / HttpPut等,并将其传递到资源中?
public <ReturnType> methodName(@<Jersey annotation> List<Object> objects)
答案 0 :(得分:3)
这样的东西?
@GET
@Path("/resource")
public Response restMethod(@QueryParam("num") List<Integer> ints)
然后可以这样调用:
http://localhost/resource?num=1&num=2&num=3