JAX-RS(新泽西州)在POST请求JSON对象的消耗阵列(Jax-rs(Jersey) to C

2019-07-30 03:57发布

使用JAX-RS(新泽西州)我试图实现采取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

Answer 1:

如果你不介意改变你的方法的签名:

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());


Answer 2:

一晚的答案,但可能会有所帮助他人发布此:

[{ “标记”: “ABC”, “值”: “GHI”},{ “标记”: “123”, “值”: “456”}]

因为通过发送这样的:

{ “someObj中”:[{ “标记”: “ABC”, “值”: “GHI”},{ “标记”: “123”, “值”: “456”}]}

您发布使用一个单一的“someObj中”命名属性的对象。 你是不是张贴数组



Answer 3:

尝试包裹的物体像里面的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


Answer 4:

在服务器端:

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
});


文章来源: Jax-rs(Jersey) to Consumes Array of Json object in POST request