我正在尝试使用JAX-RS资源的JAXB注释的对象进行应用程序/json输出。我在带有ResEasy的JBoss AS7上运行(最新版本-7.1.1.Final和2.3.4.Final)。问题是我想自定义我的JSON输出。我必须注意,我不在乎我是否会使用Jettison或Jackson,但我只能使Jettison工作(部署应用程序)而不会出现错误。如果可能的话,我也想只在我的对象上使用JAXB注释——但这不是必须的。
1)我想在XmlAt的注释字段中省略“@”。我找到了如何使用Jettison执行此操作的属性,但我不知道如何在JBoss AS7上配置它。没有找到任何ContextResolver示例。
2)我想有正常的JSON数组,例如。
@XmlRootElement(name = "root")
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {
@XmlElementRef(type = Entry.class, required = false)
// no difference with @XmlElement
private Set<Entry> entries;
}
连载成
{"entries":
{"entry":[{...},{...},{...}]}
}
我希望
{"entries":
[
{"entry":{...}},
{"entry":{...}},
{"entry":{...}}
]
}
或者只是(省略XmlRootElement)
{"entries":
[{...},{...},{...}]
}
3)正如我所指出的,我不在乎我将使用什么提供程序(Jettison/Jackson),但很难找到如何正确设置maven依赖项以使应用程序可以毫无错误地部署的工作示例。到目前为止,我正在使用:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>${resteasyVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>${resteasyVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jettison-provider</artifactId>
<version>${resteasyVersion}</version>
<!--<scope>provided</scope>-->
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.stream</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
</exclusions>
</dependency>
感谢所有的答案
到目前为止,我设法使Jackson工作并使用其特定于提供者的注释(@JsonProperty…等等),这解决了我的问题。我试图只找到JAXB解决方案,但我也可以接受这一点。
顺便说一句我的依赖
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>${resteasyVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>${resteasyVersion}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson-provider</artifactId>
<version>${resteasyVersion}</version>
</dependency>