Return JSONArray instead of JSONObject, Jersey JAX-RS

﹥>﹥吖頭↗ 提交于 2019-12-18 05:55:57

问题


I am using Jersey to make some of my services RESTful.

My REST service call returns me

{"param1":"value1", "param2":"value2",...."paramN":"valueN"}

But, I want it to return

["param1":"value1", "param2":"value2",...."paramN":"valueN"]

What are the changes I need to make in the code below?

@GET
@Produces(MediaType.APPLICATION_JSON)
public List<com.abc.def.rest.model.SimplePojo> getSomeList() {
    /* 
            Do something
    */
    return listOfPojos;
}

Part of my web.xml file looks like this

    <servlet>
        <servlet-name>Abc Jersey REST Service</servlet-name>
        <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
        <init-param>
            <param-name>com.sun.jersey.config.property.packages</param-name>
            <param-value>com.abc.def.rest</param-value>
        </init-param>
        <load-on-startup>0</load-on-startup>
    </servlet>

Thanks!


回答1:


You can define your service method as follows, using Person POJO:

@GET
@Produces("application/json")
@Path("/list")
public String getList(){
    List<Person> persons = new ArrayList<>();
    persons.add(new Person("1", "2"));
    persons.add(new Person("3", "4"));
    persons.add(new Person("5", "6"));
    // takes advantage to toString() implementation to format as [a, b, c]
    return persons.toString();
}

The POJO class:

@XmlRootElement
public class Person {
    @XmlElement(name="fn")
    String fn;

    @XmlElement(name="ln")
    String ln;

    public Person(){        
    }

    public Person(String fn, String ln) {
        this.fn = fn;
        this.ln = ln;
    }    

    @Override
    public String toString(){
        try {
            // takes advantage of toString() implementation to format {"a":"b"}
            return new JSONObject().put("fn", fn).put("ln", ln).toString();
        } catch (JSONException e) {
            return null;
        }
    }
}

The results will look like:

[{"fn":"1","ln":"2"}, {"fn":"3","ln":"4"}, {"fn":"5","ln":"6"}]



回答2:


To return the entries in array-type style, you should build your entity from array. Try the following:

@GET
@Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_JSON})
public Response getSomeList() {
    List<com.abc.def.rest.model.SimplePojo> yourListInstance = 
          new List<com.abc.def.rest.model.SimplePojo>();
    /* 
          Do something
    */
    return Response.ok(yourListInstance.toArray()).build();
}

if you face some trouble according to return type of toArray() method - you could explicitly cast your array:

Response
   .ok((com.abc.def.rest.model.SimplePojo[])yourListInstance.toArray())
   .build(); 

UPD: try to convert your list to JSONArray:

JSONArray arr = new JSONArray();
for (SimplePojo p : yourListInstance) {
  arr.add(p);
}

and then:

Response.ok(arr).build(); 


来源:https://stackoverflow.com/questions/10849526/return-jsonarray-instead-of-jsonobject-jersey-jax-rs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!