Jax-rs(Jersey)消耗POST请求中的Json对象数组

时间:2012-06-28 01:51:13

标签: java rest jersey jax-rs

使用jax-rs(Jersey)我尝试实现一个带有JSON对象列表的POST请求

//The resource look like this
@Path("/path")
@POST
@Consumes(MediaType.APPLICATION_JSON)
public void setJsonl(List<SomeObj> test) {
  //do work
  System.out.println(test);
}


//The class to define the json structure
@XmlRootElement
public class SomeObj{

private String tag;
private String value;

public String getTag() {
 return tag;
}

public void setTag(String tag) {
  this.tag = tag;
}

public String getValue() {
  return value;
}

public void setValue(String value) {
  this.value = value;
}
}

当我尝试使用curl测试REST api时,我总是遇到“错误的请求”错误,我在这里错过了什么?

curl -X POST -H "Content-Type: application/json" -d '{"SomeObj":[{"tag":"abc", "value":"ghi"},{"tag":"123", "value":"456"}]}' http://{host_name}:8080/path_to_resource

4 个答案:

答案 0 :(得分:3)

如果您不介意更改方法的签名:

import org.json.JSONArray;

    //The resource look like this
    @Path("/path")
    @POST
    @Consumes(MediaType.APPLICATION_JSON)
    public void setJsonl(String array){
        JSONArray o = new JSONArray(last_data);
        System.out.println(o.toString());

答案 1 :(得分:2)

迟到的答案,但可能对其他人有所帮助 发布这个:

  

[{“tag”:“abc”,“value”:“ghi”},{“tag”:“123”,“value”:“456”}]

因为发送此信息:

  

{“SomeObj”:[{“tag”:“abc”,“value”:“ghi”},{“tag”:“123”,“value”:“456”}}}

您要发布一个带有一个'SomeObj'命名属性的对象。你没有发布数组

答案 2 :(得分:0)

尝试将JSON数组包装在对象中:

@XmlRootElement 
public class SomeObjListWrapper {
private List<SomeObj> list;
// getters and setters
}

curl -X POST -H "Content-Type: application/json" -d '{"list":[{"tag":"abc", "value":"ghi"},{"tag":"123", "value":"456"}]}' http://{host_name}:8080/path_to_resource

答案 3 :(得分:-2)

在服务器端:

import _root_.org.codehaus.jettison.json.{JSONArray, JSONObject}
@POST
@Path("/wants-json-array")
@Consumes(Array(MediaType.APPLICATION_JSON))
def wantsJSONArray(array: JSONArray): Response =
{
    // here's your array
}

在客户端:

$.ajax(
{
    type: "GET",
    url: '/your-web-service/wants-json-array',
    data: JSON.stringify(THEARRAYYOUARESENDINGTOTHESERVER),
    contentType: "application/json",
    dataType: "json",
    processData: false
});