在Java中使用REST服务获取空对象

时间:2012-06-03 09:13:17

标签: java json rest jax-ws

我的资源类中有以下方法用于Java中的REST服务。

@POST
@Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Player createCustomer(Customer customer)
{
    System.out.println("Request for Create");

    System.out.println(""+customer.getID()+"\n"+customer.getTableID()+"\n"+customer.getCustNick());

    //Above statement should print the details I send via JSON object

    //return custdao.create(customer); //Want to call this to add new "customer"  into database table.

    return player;
}

按照jQuery方法,我填写表单中的输入字段并单击“创建”按钮时调用。

function createEntry() {
        var formData = JSON.stringify({
            "ID" : $("input[name='txtID']").val(),
            "tableID" : $("input[name='txtTableID']").val(),
            "custNick" : $("input[name='txtNick']").val()
        });

        console.log(formData); //Just to see if form details are JSON encoded.

        $.ajax({
            type: "POST",
            contentType: "application/json",
            url: baseURL,
            dataType: "json",
            data: formData,
            success: function(data) {
                console.log("Customer Added!");
                $("div.response").append("<h3>New Customer ("+ $("input[name='txtNick']").val() +") Added on the Server</h3>");
            }
        });
    }

但是在服务器上,我变得空洞&#34;客户&#34;对象,我在这里做错了什么?如果您需要任何进一步的细节(关于客户类型号),请告诉我。

更新:以下是客户类。

/*ignore imports, all required imports are included */

@XmlRootElement
public class Customer
{
    private int id;
    private int tableid;
    private String custnick;

    public int getID()
    {
            return id;
    }

    public void setID(int id)
    {
            this.id = id;
    }

    ....
    ....
    /* Similar Setter-Getter Methods for the fields */
}

我想这个问题与我的&#34;客户&#34;的XML架构有关。我在JSON对象中发送的类和节点名称与模式不匹配,因为它可能无法使用我的模型类的setter方法映射字段,但不确定。

1 个答案:

答案 0 :(得分:1)

问题可能是由字段名称不匹配引起的。

您可以在实体类上使用@XmlElement JAXB注释来设置字段所需的任何名称,以使其全部清晰。只需点击此链接:http://jaxb.java.net/tutorial/section_6_2_7_1-Annotations-for-Fields.html#Annotations%20for%20Fields