【发布时间】:2012-04-02 19:14:56
【问题描述】:
我收到的错误:
SEVERE: A message body reader for Java class java.util.List,
and Java type java.util.List<com.testapp.Category>,
and MIME media type text/html; charset=utf-8 was not found
尝试使用带有 Jersey 的 GET 方法来使用来自 Rest 服务的 JSON 响应。当我使用 curl 时,来自服务器的响应如下所示:
[{"category":{"id":"4d9c5dfc8ddfd90828000002","description":"Cows"}},
{"category":{"id":"4d9c5dfc8ddfd90828000023","description":"Dogs"}},
...
{"category":{"id":"4d9c5dfc8ddfd90828000024","description":"Mules"}}]
使用服务:
public List<Category> getAnimalCategories(Cookie cookie) {
Client client = Client.create(new DefaultClientConfig());
ClientResponse response = client
.resource(Constants.BASE_URL)
.path(Constants.CATEGORIES_ANIMALS)
.accept(MediaType.APPLICATION_JSON)
.type(MediaType.APPLICATION_JSON)
.cookie(cookie)
.get(ClientResponse.class);
return response.getEntity(new GenericType<List<Category>>(){});
}
Category.java 在哪里:
public class Category {
public String id;
public String description;
public Category() {
}
public Category(String id, String description) {
super();
this.id = id;
this.description = description;
}
该服务使用基于 cookie 的身份验证 - 这部分有效,我还有其他使用 cookie 的服务调用。
【问题讨论】:
-
通过添加 Jackson 1.9.6 jar 并添加到 ClientConfig 修复:clientConfig.getClasses().add(JacksonJsonProvider.class);
标签: java json rest arraylist jersey