为每个元素生成带有命名空间的 XML

发布于 2024-12-29 05:48:24 字数 1192 浏览 1 评论 0原文

如何使用 JAXB 生成具有以下架构的 XML。

<NS1:getRatesResponse xmlns:NS1="http://mynamespaceTypes">
    <response>
        <NS2:rates xmlns:NS2="http://mynamespace">
            <currency>USD</currency>

        </NS2:rates>
        <NS3:rates xmlns:NS3="http://mynamespace">
            <currency>EUR</currency>
            
        </NS3:rates>
        <NS4:rates xmlns:NS4="http://mynamespace">
           ... etc
    </response>
</NS1:getRatesResponse>

我不知道如何告诉 JAXB 每个新项目都应该是具有相同命名空间的 NS(n+1) 。更改 XML 格式不是一个选项,因为它是外部的。

JAXB 正确解析此 XML,但是当使用相同的类生成时,它会生成如下所示:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns3:getRatesResponse
   xmlns:ns2="http://mynamespaceTypes" 
   xmlns:ns3="http://mynamespace">
  <response>
    <ns2:rates>
     <currency>EUR</currency>
     
    </ns2:rates>
    <ns2:rates>
     <currency>USD</currency>
     
    </ns2:rates>
  </response>
 </ns3:getRatesResponse>

How can I generate XML with the following schema using JAXB.

<NS1:getRatesResponse xmlns:NS1="http://mynamespaceTypes">
    <response>
        <NS2:rates xmlns:NS2="http://mynamespace">
            <currency>USD</currency>

        </NS2:rates>
        <NS3:rates xmlns:NS3="http://mynamespace">
            <currency>EUR</currency>
            
        </NS3:rates>
        <NS4:rates xmlns:NS4="http://mynamespace">
           ... etc
    </response>
</NS1:getRatesResponse>

I don't know how to tell JAXB that every new item should be NS(n+1) with the same namespace. Changing XML format is not an option, because it's external.

JAXB parses this XML correctly, but when producing using same classes it produces it like this:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns3:getRatesResponse
   xmlns:ns2="http://mynamespaceTypes" 
   xmlns:ns3="http://mynamespace">
  <response>
    <ns2:rates>
     <currency>EUR</currency>
     
    </ns2:rates>
    <ns2:rates>
     <currency>USD</currency>
     
    </ns2:rates>
  </response>
 </ns3:getRatesResponse>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一紙繁鸢 2025-01-05 05:48:25

对于此用例,我将执行以下操作:

  1. 创建 StAX XMLStreamWriter
  2. getRatesResponseresponse 元素直接写入 XMLStreamWriter code>
  3. marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true); 上设置以下属性,以防止在每次编组调用时写入标头。
  4. 将每个 Rate 对象分别编组到 XMLStreamWriter
  5. 在 Marshaller 上设置一个 NamespacePrefixMapper 实例来控制命名空间前缀(这当前需要 JAXB RI,目前正在将对此扩展的支持添加到 EclipseLink JAXB (MOXy))。

了解更多信息

For this use case I would do the following:

  1. Create a StAX XMLStreamWriter
  2. Write the getRatesResponse and response elements directly to the XMLStreamWriter
  3. Set the following property on marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true); to prevent the header from being written on each marshal call.
  4. Marshal each of the Rate objects to the XMLStreamWriter individually.
  5. On the Marshaller set an instance of NamespacePrefixMapper on it to control the namespace prefix (this currently requires the JAXB RI, support for this extension is currently being added to EclipseLink JAXB (MOXy)).

For More Information

灵芸 2025-01-05 05:48:25

将这些配置添加到我的方案中解决了我的问题
attributeFormDefault="不合格" elementFormDefault="合格"

Adding these config to my scheme solved my issue
attributeFormDefault="unqualified" elementFormDefault="qualified"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文