JAXB: How do I annotate classes so that they belong to different namespaces?

☆樱花仙子☆ 提交于 2019-12-04 10:35:33

问题


I want to have JAXB-annotated classes which would be marshalled/unmarshalled to different XML namespaces.

What I need is something like:

<someRootElement xmlns="urn:my:ns1"
    xmlns:a="urn:my:ns2" xmlns:b="urn:my:ns3">

  <someElement/>
  <a:someElement/>
  <b:someElement/>

</someRootElement>

How can it be done?

Can it be done programatically? (without the need for JAXB's .xjb bindings file?)


回答1:


@XmlRootElement(name="someRootElement", namespace = "urn:my:ns1")
class Test {
    @XmlElement(name="someElement", namespace="urn:my:ns1")
    String elem1 = "One";

    @XmlElement(name="someElement", namespace="urn:my:ns2")
    String elem2 = "Two";

    @XmlElement(name="someElement", namespace="urn:my:ns3")
    String elem3 = "Three";
}

This marshals into the following XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<someRootElement xmlns="urn:my:ns1" xmlns:ns2="urn:my:ns2" xmlns:ns3="urn:my:ns3">
    <someElement>One</someElement>
    <ns2:someElement>Two</ns2:someElement>
    <ns3:someElement>Three</ns3:someElement>
</someRootElement>

If you are using JAXB RI and don't like the default ns2 and ns3 namespace prefixes, you need to provide your own NamespacePrefixMapper.



来源:https://stackoverflow.com/questions/870691/jaxb-how-do-i-annotate-classes-so-that-they-belong-to-different-namespaces

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!