我正在尝试为restful资源编写一个java客户端。我的请求的响应是对象列表。我有以下请求代码。但是我得到了一些解组异常。谁能让我知道如何解决这个问题?
GenericType<List<Response>> genType = new GenericType<List<Response>>() {};
GenericType<List<Response>> response = (GenericType<List<Response>>)resource.path(paramPath).accept(MediaType.APPLICATION_JSON).get(genType);
我的资源有以下代码
@GET
@Path("/app/{Id}")
@Produces(MediaType.APPLICATION_JSON)
public List<Response> getAllKeyValuesByAppId(@PathParam("Id") Long Id){
...
...
}