4

我正在使用 Jersey+Jackon 制作一个与 JSON 一起使用的 REST API。

假设我有一个类如下:

@XmlRootElement
public class A {
    public String s;
}

这是我使用该类的球衣方法:

@GET
@Produces(MediaType.APPLICATION_JSON)
public Object get(@PathParam("id") String id) throws Exception{
    A[] a= new A[2];
    a[0] = new A();
    a[0].s="abc";
    a[1] = new A();
    a[1].s="def";
    return a;
}

输出是:

{"a":[{"s":"abc"},{"s":"def"}]}

但我希望它是这样的:

[{"s":"abc"},{"s":"def"}]

我应该怎么办?请帮我。

4

3 回答 3

2

您的要求似乎是从 json 字符串中删除根元素。这可以在 Jersey 中进行如下配置。在 Jersey 中,是否删除根元素由JSONConfiguration.rootUnwrapping(). 更多细节可以在 Jersey 和 CXF 中的 JSON 支持中找到。

这是执行此操作的示例代码。

   @Provider
   public class MyJAXBContextResolver implements ContextResolver<JAXBContext> {

       private JAXBContext context;
       private Class[] types = {StatusInfoBean.class, JobInfoBean.class};

       public MyJAXBContextResolver() throws Exception {
           this.context = new JSONJAXBContext(
                   JSONConfiguration.mapped()
                                      .rootUnwrapping(true)
                                      .arrays("jobs")
                                      .nonStrings("pages", "tonerRemaining")
                                      .build(),
                   types);
       }

       public JAXBContext getContext(Class<?> objectType) {
           return (types[0].equals(objectType)) ? context : null;
       }
   }
于 2012-06-14T06:28:38.720 回答
0

第一个是有效的 JSON 字符串。

第二个不是。

于 2012-06-14T06:28:12.387 回答
0

<servlet>您可以尝试在相关节点下将以下内容添加到您的 web.xml :

<init-param>
    <param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
    <param-value>true</param-value>
</init-param>

Jersey 文档提供了有关此设置的更多信息。

此功能是在 Jersey 1.4 中引入的,依赖于 Jackson。如果您使用的是 Glassfish 3.0.1 或更低版本捆绑的版本,则需要按照升级说明进行操作

于 2012-10-13T18:38:15.453 回答