我有ReST方法,它接受一个自定义对象列表(如下所示)。使用对象列表进行一些计算并返回适当的数据。
@POST
@Path("/getList")
@Produces(MediaType.APPLICATION_JSON)
public response getList(@BeanParam List<MyObjects> myobjectsList) {
//Iterate over the list and return
return Response.ok(outputList).build();
}
Myobjects课程看起来像这样:
public class MyObjects {
@QueryParam
private String name;
@QueryParam
private int age;
public String getName() {
return name;
}
public int getAge() {
return age;
}
}
这里有两个问题:
1)在这种情况下POST URL如何?
2)我们如何使用HttpClient将MyObjects
列表传递给Rest方法?
由于