- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在使用 jeresy ClientRespone.getEntity 反序列化时遇到问题
我尝试遵循一些教程和问题,包括: http://jersey.576304.n2.nabble.com/How-can-I-parse-a-java-util-List-lt-gt-Is-it-supported-by-the-Jersey-client-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}
然后解析它(例如使用 Jackson),我想将该实体放入我的 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());
}
Account (client) 类缺少一个注解。它是必需的,因为您正在使用字段注释。另一种选择是为 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 - 通用类型的 Jersey ClientResponse.getEntity,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27341788/
我写了一个脚本作为 Ubuntu 启动服务(位于/etc/init.d 并在启动时运行)有一条线 HOMEDIR=`getent passwd username1 | cut -d: -f6` 问题是
我有一些关于 getent group 的问题。 getent group A从哪里得到A组的信息? 是否只能从 /etc/group 获取? 是否有可能我可以通过 getent group A 找到
public InputStream getInputStream() { AndroidHttpClient client = AndroidHttpClient.newInstance(U
我正在使用 Jersey Client 进行 REST 服务调用。现在,当我收到响应时,我想记录 json 响应,并且我还想让实体填充到我的响应 bean 中。 Client client = Cli
我有以下问题: 在我的带有 Hibernate 的 Java Spring Boot 应用程序中,我有 Service 实现类。它看起来像这样: package eu.barz.familykurse
我想检查某个用户是否存在于特定组中。 getent passwd user_name &> /dev/null 上面的命令检查用户是否在那里。但我还想看看它是否属于一个名为 example suppo
我正在使用 jq 来尝试将 bash 命令输出转换为 json。但是,转换失败了。 使用这一行: hostname && getent passwd | egrep -v '/s?bin/(nolog
我在使用 jeresy ClientRespone.getEntity 反序列化时遇到问题 我尝试遵循一些教程和问题,包括: http://jersey.576304.n2.nabble.com/Ho
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: NetworkOnMainThreadException 很长一段时间以来,我一直在使用在 AsyncTas
我正在使用 getent group 命令获取 groups 以及 linux 中的用户名。但它没有显示某些我知道存在的 groups 的任何 usernames。 我需要这个信息,还有其他办法吗?
在我的逻辑应用中,第一步从 Azure 表存储中获取一些已筛选的实体。过滤器由两个条件组成: 一个字段必须等于某个常量值 其他字段(日期时间)必须小于或等于当前时间减 10 分钟 它一直工作正常,直到
在 Symfony 中创建 Doctrine postPersist EventListener 后,我的 IDE 指向 $args->getEntity() 行;由于已被弃用,我不知道如何解决这个问
在配置 LDAP 身份验证时,我遇到了以下问题。 我已经在 nsswitch.conf 文件中配置了 nss,如下所示: 密码:ldap文件 组:文件 阴影:文件 当我给出以下命令时:获取密码列出所有
我想知道为什么一方面从 id 和 group 得到不同的结果,另一方面从 getent group 得到不同的结果。重现步骤: $ sudo usermod -a -G libvirt eric $
我想使用 javax.ws.rs.core.Response 来发送和接收 Card 实体对象。但我不知道如何将内容转换回 Card 对象。 我的 testCreate() 方法应该执行 create
我的代码 /* * To change this template, choose Tools | Templates * and open the template in the editor.
我需要 IP 地址的前 3 个八位字节和 myhosts 名称,而我尝试通过 cut 命令进行但无法加入主机名 $ getent hosts myhosts 172.10.2.32 myhost
当我调用下一个代码时: Response response = target.request(MediaType.APPLICATION_JSON_TYPE) .pos
我有这个异常(exception)。 我的对象看起来像这样: @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class Ob
当我向特定 URL 发出 get 请求时,将下载一个文件。我可以从两种方式获取InputStream。 方法一 使用java.net包中的URL类。 java.net.URL url = new UR
我是一名优秀的程序员,十分优秀!