我在使用Jeresy ClientRespone.getEntity进行反序列化时遇到问题
我试图遵循一些教程和问题,包括:http :
//jersey.576304.n2.nabble.com/How-can-I-parse-a-java-util-List-lt-gt-Is-
它由泽西岛客户支持td2300852.html
https://jersey.java.net/nonav/documentation/1.5/json.html
http://www.programcreek.com/java-api-examples/ index.php?api =
com.sun.jersey.api.client.GenericType
我仍然一遍又一遍地遇到同样的异常。
我的目标是:而不是:
response.getEntity(String.class); --> {"name":"Ben","type":"The man","id":0}
然后解析它(例如,使用杰克逊),我想将该实体放入我的POJO对象中。
到目前为止,这是我的尝试:
服务器端:
@POST
@Path("/account") // route to a specific method.re
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response saveDataIntoHash(Account account) {
Account createdAccount = new Account(account.getName(), account.getType());
accountHash.put(createdAccount.getID(), createdAccount);
return Response.status(201).entity(new AccountResponse(createdAccount.getID())).build();
}
服务器端帐户类别:
private String name;
private String type;
private int ID;
private static int classID = 0;
public Account(String name, String type) {
this.name = name;
this.type = type;
this.ID = classID++;
}
public Account() {
}
public void setName(String name) { this.name = name; }
public String getName() { return name; }
public void setType(String type) { this.type = type; }
public String getType() { return type; }
public int getID() {
return ID;
}
public void setID(int ID) {
this.ID = ID;
}
public static int getClassID() {
return classID;
}
public static void setClassID(int classID) {
Account.classID = classID;
}
客户端
private static void getToRestPartner(Client client) {
WebResource webResource = client.resource("http://localhost:8080/RESTfulExample/rest/account/0");
ClientResponse response = webResource.type("application/json").get(ClientResponse.class);
if (!(response.getStatus() == 201 || response.getStatus() == 200)) {
throw new RuntimeException("Failed : HTTP error code : " + response.getStatus());
}
System.out.println("Output from Server .... \n");
List<Account> accountList = response.getEntity(new GenericType<List<Account>>() {
});
System.out.println(accountList.size());
}
客户帐户类别:
@XmlRootElement
public class Account {
@XmlElement
private String name;
@XmlElement
private String type;
@XmlElement
private int id;
public Account(String name, String type, Integer id) {
this.name = name;
this.type = type;
this.id = id;
}
public Account() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
它引发以下异常:
Dec 7, 2014 12:15:58 PM com.sun.jersey.api.client.ClientResponse getEntity
SEVERE: A message body reader for Java class java.util.List, and Java type java.util.List<Account>, and MIME media type application/json was not found
Dec 7, 2014 12:15:58 PM com.sun.jersey.api.client.ClientResponse getEntity
SEVERE: The registered message body readers compatible with the MIME media type are:
*/* ->
com.sun.jersey.core.impl.provider.entity.FormProvider
com.sun.jersey.core.impl.provider.entity.StringProvider
com.sun.jersey.core.impl.provider.entity.ByteArrayProvider
com.sun.jersey.core.impl.provider.entity.FileProvider
com.sun.jersey.core.impl.provider.entity.InputStreamProvider
com.sun.jersey.core.impl.provider.entity.DataSourceProvider
com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General
com.sun.jersey.core.impl.provider.entity.ReaderProvider
com.sun.jersey.core.impl.provider.entity.DocumentProvider
com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader
com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader
com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader
com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General
com.sun.jersey.core.impl.provider.entity.EntityHolderReader
Exception in thread "main" com.sun.jersey.api.client.ClientHandlerException: A message body reader for Java class java.util.List, and Java type java.util.List<Account>, and MIME media type application/json was not found
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:549)
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:523)
at com.sample.Sample.getToRestPartner(Sample.java:59)
at com.sample.Sample.main(Sample.java:22)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
您的帮助将不胜感激!
很少需要修复或添加的内容(不确定您的情况,因为缺少某些部分)
资源: 我自己进行了测试,因为您缺少一些项目
@Path("/")
public class AccountResource {
@GET
@Path("/account") // route to a specific method.re
@Produces(MediaType.APPLICATION_JSON)
public Response saveDataIntoHash() {
List<Account> accounts = new ArrayList<Account>();
accounts.add(new Account("Stack", "Savings"));
accounts.add(new Account("Overflow", "Checkings"));
GenericEntity generic = new GenericEntity<List<Account>>(accounts){};
return Response.status(201).entity(generic).build();
}
}
假设您具有以下依赖性:
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>${jersey-version}</version>
</dependency>
测试用例: 注意客户端配置。这是必需的。
public void testMyResource() {
ClientConfig config = new DefaultClientConfig();
config.getClasses().add(JacksonJaxbJsonProvider.class);
config.getFeatures().put(JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);
Client c = Client.create(config);
WebResource resource = c.resource(Main.BASE_URI);
ClientResponse response = resource.path("account")
.accept("application/json").get(ClientResponse.class);
List<Account> accounts
= response.getEntity(new GenericType<List<Account>>(){});
StringBuilder builder = new StringBuilder("=== Accounts ===\n");
for (Account account: accounts) {
builder.append("Name: ").append(account.getName()).append(", ")
.append("Type: ").append(account.getType()).append("\n");
}
builder.append("==================");
System.out.println(builder.toString());
}
帐户(客户) 类缺少一个注释。在使用字段注释时,它是必需的。另一种选择是为id
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD) // <======= This Here
public class Account {
// added toString for testing
@Override
public String toString() {
return "Account{" + "name=" + name
+ ", type=" + type
+ ", id=" + id + '}';
}
}
*测试 *结果 :
=== Accounts ===
Name: Stack, Type: Savings
Name: Overflow, Type: Checkings
==================
注意: 此测试基于服务器端没有错误的假设。
问题内容: 抱歉,标题似乎令人困惑,但请按示例进行操作。 假设我有一些带有通用类型参数的Java类: 我可以创建一个类型为存储对象的变量,并将通用参数设置为。Java还允许我将该变量分配给另一个变量,但将通用参数设置为通配符类型: 但是,在使用具有泛型参数的类时,如果将该参数的类型设置为泛型,则无法将该类的对象分配给相同类型/泛型的类型,后者(内部/嵌套)参数是通配符类型: 具体的编译错误是: 凭
Locality Node Endpoint Metadata RuntimeUInt32 HeaderValue HeaderValueOption ApiConfigSource ApiConfigSource.ApiType (Enum) AggregatedConfigSource ConfigSource TransportSocket RoutingPriority (Enum) Re
问题内容: 我是Generic的新手,我的问题是:两个函数之间有什么区别: 功能1: 功能2: 问题答案: 第一个签名说:是一个ES列表。 第二个签名说:是某种类型的实例的,但是我们不知道类型。 当我们尝试更改方法时,区别变得明显,因此它需要第二个参数,该参数应添加到方法内部的列表中: 第一个效果很好。而且你不能将第二个参数更改为可以实际编译的任何参数。 实际上,我发现了一个更好的区别说明: 一个
问题内容: 考虑以下方法: 和 这两种方法有什么区别?如果没有差异,为什么要使用第二个? 问题答案: 不允许您在列表中添加对象。请参阅下面的程序。这是我们传递给method的特定列表类型。 特定方式,列表是使用特定类型创建的,并传递给method 。不要与 单词 混淆。 具体可以是任何普通对象,例如Dog,Tiger,String,Object,HashMap,File,Integer,Long
问题内容: 在常规数组列表初始化中,我们习惯于如下定义泛型类型, 但是,如果是ArrayLists的ArrayList,我们如何定义其通用类型? 数组列表的数组列表代码如下: 只需共享语法,如果有人对此有想法。 问题答案: 你可以做 如果您需要一个列表数组,可以执行 并安全地忽略或禁止该警告。
问题内容: 嗨,Java中有什么方法可以获取静态通用类类型 我结束了构建 我想知道是否存在类似的东西: (我真的不想构造新的对象只是为了获得其类型) 谢谢 问题答案: 由于所有类实际上在运行时都对应于同一类,因此可以这样做: 但是由于某种原因,Java不喜欢它。用String尝试过: 好吧,那我们就傻了吧: 这很愚蠢,但是有效。它会产生“未经检查”的警告,但是您的示例也是如此。请注意,尽管如此,它