我正在尝试编写一个服务,该服务将在POST请求中接受JSON或XML对象。我已经成功编写了一个GET请求处理程序,该处理程序将按照标题的accept中的请求将我的对象作为XML或JSON返回。当我使用JSON作为请求主体POST到服务时,我的POST方法中的Java对象没有填充json中的值。
@POST
@Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public void postUser(@Context HttpServletRequest Req, User user)
{
PersistenceManager pm = PMF.get().getPersistenceManager();
try
{
pm.makePersistent(user);
}
finally
{
pm.close();
}
}
当我在POST方法中断时,User类型的Java对象“user”具有属性的空值。该对象本身不是null,只是属性。
这是POST提交的JSON
{"user":{"logon":"kevin","password":"password","personid":"xyz"}}
这是我的班级
package com.afalon.cloud.contracts;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.jdo.annotations.Extension;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;
@PersistenceCapable
@XmlRootElement(name = "user")
@XmlAccessorType(XmlAccessType.NONE)
public class User {
@Persistent
@XmlElement(name="logon")
private String logon;
@Persistent
@XmlElement(name="password")
private String password;
@Persistent
@XmlElement(name="personid")
private String personid;
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
@Extension(vendorName="datanucleus", key="gae.encoded-pk", value="true")
@XmlElement(name="userid")
private String userid;
public User () {}
public void setLogOn(String value) {
logon = value;
}
public String getLogOn() {
return logon;
}
public void setPassword(String value) {
password = value;
}
public String getPassword() {
return password;
}
public void setPersonId(String value) {
personid = value;
}
public String getPersonId() {
return personid;
}
public String getUserId() {
return userid;
}
答案 0 :(得分:5)
也许没有人回答我的问题,因为问题有这么明显的解决方案!
在我发现错误后,我可以回答我自己的问题。
我提交的JSON正文被格式化为User
个对象的列表,所以如果我编辑
{"user":{"logon":"kevin","password":"password","personid":"xyz"}}
到
{"logon":"kevin","password":"password","personid":"xyz"}
一切正常,因为我的@POST处理程序不期望User
个对象的列表。另外,我可以调整我的@POST处理程序来接受List<User>
参数!