我编写了一个JAX-RS(Jersey)REST服务,它接受ONIX XML格式的XML消息。通常,我已经使用xjc从给定模式生成了JAXB绑定的所有必需类。整体上有500多个课程,我无法修改它们。
现在,当我有一个JAXB映射对象时,我需要将它存储到数据库中。我使用mongoDb,因此消息格式应该是JSON。我尝试使用Jackson和JAXB模块将JAXB对象转换为JSON,这对于存储数据非常有用。但是当我尝试将JSON转换回JAXB对象时,它会以某种方式抛出与JAXBElement连接的异常。在谷歌我发现杰克逊不支持JAXBElement,我必须解决这个问题。但我不能这样做,因为我无法修改JAXB生成的类。
有没有办法通过其他方式将JAXB对象映射到JSON,但是它将遵循整个JAXB规范,以便将来从JSON转换为JAXB对象和签证没有问题?
答案 0 :(得分:16)
注意:我是EclipseLink JAXB (MOXy)主管,是JAXB (JSR-222)专家组的成员。
如果你不能与杰克逊一起做,你的用例将适用于MOXy。
<强>富强>
以下是包含JAXBElement
类型字段的示例类。
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class Foo {
@XmlElementRef(name="bar")
private JAXBElement<Bar> bar;
}
<强>酒吧强>
public class Bar {
}
<强>的ObjectFactory 强>
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.*;
import javax.xml.namespace.QName;
@XmlRegistry
public class ObjectFactory {
@XmlElementDecl(name = "bar")
public JAXBElement<Bar> createBar(Bar bar) {
return new JAXBElement<Bar>(new QName("bar"), Bar.class, bar);
}
}
下面是一些可以在Java SE中运行的演示代码,以确保一切正常:
<强>演示强>
import java.util.*;
import javax.xml.bind.*;
import javax.xml.transform.stream.StreamSource;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
public class Demo {
public static void main(String[] args) throws Exception {
Map<String, Object> properties = new HashMap<String, Object>(2);
properties.put(JAXBContextProperties.MEDIA_TYPE, "application/json");
properties.put(JAXBContextProperties.JSON_INCLUDE_ROOT, false);
JAXBContext jc = JAXBContext.newInstance(new Class[] {Foo.class, ObjectFactory.class}, properties);
Unmarshaller unmarshaller = jc.createUnmarshaller();
StreamSource json = new StreamSource("src/forum19158056/input.json");
Foo foo = unmarshaller.unmarshal(json, Foo.class).getValue();
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(foo, System.out);
}
}
<强> input.json /输出强>
{"bar" : {} }
以下链接将帮助您在JAX-RS服务中利用MOXy:
答案 1 :(得分:8)
由于您使用的是杰克逊,您可以使用ObjectMapper
构建JaxbAnnotationModule
并写出值。以下是将JAXB注释对象写入系统的一些代码。
ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(new JaxbAnnotationModule());
mapper.writeValue(System.out, jaxbObject);
这种方法也适用于Glassfish,因为它不使用容器提供的提供程序,这会导致GLASSFISH-21141
导致ClassNotFoundException