在我的应用程序中,JAXB 输出生成如下:
this.marshalOut(jaxb_Object, fileOutputStream);
这是对生成 XML 文件的 spring Object XML Mapping Marshallers 的方法调用。现在,我也喜欢在这一行之后生成 JSON 文件。任何人都知道使用 JAXB 输入生成 JSON 输出。
我在网上找到了这个示例代码:
ObjectMapper mapper = new ObjectMapper();
AnnotationIntrospector introspector = new JacksonAnnotationIntrospector();
// make deserializer use JAXB annotations (only)
mapper.getDeserializationConfig().setAnnotationIntrospector(introspector);
// make serializer use JAXB annotations (only)
mapper.getSerializationConfig().setAnnotationIntrospector(introspector);
mapper.writeValue( outputStream, jaxb_object);
已setAnnotationIntrospector
弃用,还有其他方法可以解决此问题吗?