1

TL;DR:由 xjc + jaxb2-annotate + xew 生成的代码和注释不会产生所需的(或者,就此而言,是开箱即用的)xml 结构,它应该是 IDREF 元素的集合。

如果我在生成的代码中手动更改集合上的 jaxb 属性,它会按我的预期工作。

生成的是:

    @XmlElementWrapper(required = true)  // from xew
    @XmlElementRef(name = "investigator", namespace = "http://example/test", type = JAXBElement.class)
    protected List<PersonType> investigators;

我想要的是:

@XmlElementWrapper(required = true)  // from xew
@XmlElement(name = "investigator", required = true, type = Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected List<PersonType> investigators;

生成的注释在运行时引发异常,指出 PersonType 没有 XmlRootElement。如果我添加它,它将运行,但 XML 集合不正确,具有 <person_type> 元素而不是 <investigfator> 元素。

我的问题是如何让 xjc 生成(我认为是“正确的”)注释?


鉴于此架构:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example/test"
  xmlns="http://example/test" elementFormDefault="qualified" >

  <xs:element name="test_metadata" type="test_document_type"/>

  <xs:complexType name="test_document_type">
    <xs:sequence>
      <xs:element name="investigators" > 
        <xs:complexType>
          <xs:sequence>
            <xs:element name="investigator" type="xs:IDREF" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="dataSubmitter" type="xs:IDREF" />
      <xs:element name="people">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="person" type="person_type" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="person_type"  id="ref_id">
    <xs:sequence>
      <xs:element name="name" type="xs:string" />
      <xs:element name="organization" type="xs:string" />
      <xs:element name="contactInfo" type="xs:string" />
      <xs:element name="identifier" type="xs:string" minOccurs="0" maxOccurs="unbounded" nillable="true" />
      <xs:element name="link" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
    <xs:attribute name="ref_id" type="xs:ID" use="required"/>
  </xs:complexType>

</xs:schema>

以及这些 xjc 绑定定制:

<jaxb:bindings node="xs:complexType[@name='test_document_type']//xs:element[@name='investigators']//xs:element[@name='investigator']">
      <jaxb:property>
        <jaxb:baseType name="PersonType"/>
      </jaxb:property>
    </jaxb:bindings>
    <jaxb:bindings node="xs:complexType[@name='test_document_type']//xs:element[@name='dataSubmitter']">
      <jaxb:property>
        <jaxb:baseType name="PersonType"/>
      </jaxb:property>
    </jaxb:bindings>

(相关)生成的代码是:

public class TestDocumentType implements Serializable
{
    @XmlElementWrapper(required = true)
    @XmlElementRef(name = "investigator", namespace = "http://example/test", type = JAXBElement.class)
    protected List<PersonType> investigators;
    @XmlElement(required = true, type = Object.class)
    @XmlIDREF
    @XmlSchemaType(name = "IDREF")
    protected PersonType dataSubmitter;
    @XmlElementWrapper(required = true)
    @XmlElement(name = "person", namespace = "http://example/test")
    protected List<xml.test.PersonType> people;
}

注意@XmlElementRef(name = "investigator", namespace = "http://example/test", type = JAXBElement.class)

当我使用这个生成的代码来构建一个包含几个 <investigator> 人和一个 <dataSubmitter> 人的 Java 对象(都在 <people> 集合中),然后尝试使用 jaxb 序列化它时,missing an @XmlRootElement annotation会抛出上面提到的异常.

List<PersonType> investigators现在,如果我手动将字段上的注释更改 为

@XmlElement(name = "investigator", required = true, type = Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected List<PersonType> investigators;

并运行代码,我得到了预期的 IDREF 元素集合:

<test_metadata xmlns="http://example/test">
    <investigators>
        <investigator>JohnHDoe</investigator>
        <investigator>JackSmith</investigator>
    </investigators>
    <dataSubmitter>JohnHDoe</dataSubmitter>
    <people>
        <person ref_id="JohnHDoe">
            <name>John H Doe</name>
            <organization>semi</organization>
            <contactInfo>tweedy</contactInfo>
        </person>
        <person ref_id="JackSmith">
            <name>Jack Smith</name>
            <organization>fully</organization>
            <contactInfo>whistler</contactInfo>
        </person>
    </people>
</test_metadata>

是否需要一些控制或绑定自定义来更正集合上的 jaxb 注释?或者另一种获得相同 XML 结构的方法?

谢谢

4

0 回答 0