2

我正在尝试为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){
    ...
    ...
}   
4

1 回答 1

0

你可以在不解组的情况下测试你的 REST 方法吗?您确定消息正文包含您所期望的内容吗?

于 2012-07-02T20:52:57.933 回答