如何在使用 JAXB 编组时生成 1.0 以外的 XML 版本
我有几个 XSD 文件和相应的 XJC 文件。使用 JAXB 生成的所有 XML 文件的版本号应该是统一的,并且应该从 XJC 或 jaxb.properties 文件中获取。我无法找到 JAXB 所指的 XML 版本号。默认情况下它生成 1.0。
I have few XSD files and corresponding XJC files. The version number of all the generated XML files using JAXB should be uniform and should be picked up from either XJC or jaxb.properties file. I am not able to find the XML version number,JAXB is referring to.By default its generating 1.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本质上,您需要使用
Marshaller.JAXB_FRAGMENT
属性将 JAXBMarshaller
设置为片段模式。然后自己编写 XML 标头。以下示例演示了如何通过 StAX 来完成此操作。演示
根
输出
Essentially you need to set the JAXB
Marshaller
into fragment mode using theMarshaller.JAXB_FRAGMENT
property. Then write the XML header yourself. The following example demonstrates how this can be done via StAX.Demo
Root
Output