XML 序列的 JAXB 处理

2022-09-04 23:04:46

我正在尝试使用Java 7中附带的JAXB实现来处理一些XML文件。我正在使用这些版本:

501 ~ % xjc -version
xjc 2.2.4
502 ~ %java -version        
java version "1.7.0_01"
Java(TM) SE Runtime Environment (build 1.7.0_01-b08)
Java HotSpot(TM) Server VM (build 21.1-b02, mixed mode)

XML 架构中有问题的去阮是:

<xsd:complexType name="CategorizeType">
    <xsd:complexContent>
        <xsd:extension base="se:FunctionType">
            <xsd:sequence>
                <xsd:element ref="se:LookupValue"/>
                <xsd:element ref="se:Value"/>
                <xsd:sequence minOccurs="0" maxOccurs="unbounded">
                    <xsd:element ref="se:Threshold"/>
                    <xsd:element ref="se:Value"/>
                </xsd:sequence>
                <xsd:element ref="se:Extension" minOccurs="0" />
            </xsd:sequence>
            <xsd:attribute name="thresholdBelongsTo"
                  type="se:ThresholdBelongsToType" use="optional"/>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

如您所见,在 Type 中有两个显式出现的 se:Value。但是,它不会停止使用 xjc 进行编译。如果我看一下为这种类型生成的Java类,我可以看到从理论上讲,检索

 <xsd:sequence minOccurs="0" maxOccurs="unbounded">
     <xsd:element ref="se:Threshold"/>
     <xsd:element ref="se:Value"/>
 </xsd:sequence>

使用以下方法:

public List<Object> getThresholdAndValue() {
    if (thresholdAndValue == null) {
        thresholdAndValue = new ArrayList<Object>();
    }
    return this.thresholdAndValue;
}

不幸的是,如果我尝试获取列表的元素,我只能检索在我的xml文件中注册为阈值的元素,其中CategorizeType实例定义如下:

 <Categorize thresholdsBelongTo="succeeding" fallbackValue="0">
     <LookupValue>
         <ns3:ValueReference>OUI_EEE92</ns3:ValueReference>
     </LookupValue>
     <Value>0.3</Value>
     <Threshold>30.0</Threshold>
     <Value>0.4</Value>
     <Threshold>40.0</Threshold>
     <Value>0.45</Value>
     <Threshold>45.0</Threshold>
     <Value>0.5</Value>
     <Threshold>50.0</Threshold>
     <Value>0.55</Value>
     <Threshold>55.0</Threshold>
     <Value>0.6</Value>
     <Threshold>60.0</Threshold>
     <Value>0.7</Value>
     <Threshold>70.0</Threshold>
     <Value>0.8</Value>
     <Extension>
         <ExtensionParameter name="method">MANUAL</ExtensionParameter>
     </Extension>
 </Categorize>

检索列表时,我只能看到阈值。

我做错了什么吗?这是Jaxb的内在限制吗?

请注意,我无法更改 XML 架构...

编辑:

我刚刚使用 -v 选项运行 xjc,并且全局获得相同的输出。详细 :

xjc -verbose se/2.0/All.xsd
parsing a schema...
[WARNING] java.net.SocketException: Unexpected end of file from server
  line 23 of file:/home/alexis/crap/SE-Schema-2.0/ows/2.0/ows19115subset.xsd

[WARNING] java.net.SocketException: Unexpected end of file from server
  line 22 of file:/home/alexis/crap/SE-Schema-2.0/filter/2.0/filterCapabilities.xsd

compiling a schema...
[INFO] generating codee
unknown location

没有它 :

xjc se/2.0/All.xsd 
parsing a schema...
[WARNING] java.net.SocketException: Unexpected end of file from server
  line 23 of file:/home/alexis/crap/SE-Schema-2.0/ows/2.0/ows19115subset.xsd

[WARNING] java.net.SocketException: Unexpected end of file from server
  line 22 of file:/home/alexis/crap/SE-Schema-2.0/ows/2.0/owsExceptionReport.xsd

compiling a schema...

以下输出仅包含生成的文件的名称和位置。

我忘了说这个xsd不能用Java 6附带的xjc编译。上次尝试是使用JAXB 2.1.10进行的,我现在无法重现此行为,因为我现在正在使用Java 7。

编辑2 :

我刚刚尝试自定义binginds,如评论中建议的那样。我的绑定文件如下:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<jxb:bindings jxb:version="1.0"
    xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"    >
    <jxb:bindings schemaLocation="schema.xsd" 
                   node="//xsd:complexType[@name='CategorizeType']">
        <jxb:bindings 
                  node="xsd:complexContent/xsd:extension/xsd:sequence/xsd:element[@ref='se:Value'][position()=1]">
            <jxb:property name="FirstValue"/>
        </jxb:bindings>
    </jxb:bindings>
</jxb:bindings>

在 Java 代码中,第一个值实例确实被替换为 firstValue 属性

@XmlElement(name = "Value", required = true)
protected ParameterValueType firstValue;
@XmlElements({
    @XmlElement(name = "Threshold", type = LiteralType.class),
    @XmlElement(name = "Value", type = ParameterValueType.class)
})
protected List<Object> thresholdAndValue;

public ParameterValueType getFirstValue() {
    return firstValue;
}
public void setFirstValue(ParameterValueType value) {
    this.firstValue = value;
}
public List<Object> getThresholdAndValue() {
    if (thresholdAndValue == null) {
        thresholdAndValue = new ArrayList<Object>();
    }
    return this.thresholdAndValue;
}

不幸的是,我仍然得到相同的结果 - 我仍然无法在getThresholdAndValues()返回的列表中看到我的值。我仍在探索定制方式...


答案 1

更新:对不起,我不得不放弃这个,我只是也无法让它工作(如果你能改变你的模式,那会容易得多!我使用的是Codehaus JAXB maven插件。我很确定这是由两个 Value 元素引起的冲突,我试图用 xjb 自定义来修复它们:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<jxb:bindings jxb:version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <jxb:bindings schemaLocation="../xsd/example.xsd" node="/xsd:schema">
        <jxb:schemaBindings>
            <jxb:package name="com.example" />
            <jxb:nameXmlTransform>
                <jxb:elementName suffix="Element"/>
            </jxb:nameXmlTransform>
        </jxb:schemaBindings>
    </jxb:bindings>
</jxb:bindings>

它完全没有效果。我试过了,它重命名了所有JAXB类,所以我假设该功能存在错误。<jxb:typeName suffix="Element"/>jxb:elementName

原文:

我一直在研究这个问题,我能够复制你的问题。

我对您的架构进行了一些自由以简化事情,但它仍然包含基本元素。这是我一直在使用的东西:

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

    <xsd:element name="Categorize" type="se:CategorizeType" />

    <xsd:complexType name="FunctionType">
    </xsd:complexType>

    <xsd:simpleType name="Value">
        <xsd:restriction base="xsd:string"/>
    </xsd:simpleType>

    <xsd:simpleType name="Threshold">
        <xsd:restriction base="xsd:string"/>
    </xsd:simpleType>

    <xsd:complexType name="CategorizeType">
        <xsd:complexContent>
            <xsd:extension base="se:FunctionType">
                <xsd:sequence>
                    <xsd:element name="Value" type="se:Value" />
                    <xsd:sequence minOccurs="0" maxOccurs="unbounded">
                        <xsd:element name="Threshold" type="se:Threshold" />
                        <xsd:element name="Value" type="se:Value" />
                    </xsd:sequence>
                </xsd:sequence>
            </xsd:extension>
        </xsd:complexContent>
    </xsd:complexType>
</xsd:schema>

我删除了与问题无关的任何元素/属性,使用而不是 ,并定义了提供的架构中缺少的类型。name/typeref

我生成的 JAXB 分类类型类如下所示:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CategorizeType", propOrder = {
    "value",
    "thresholdAndValue"
})
public class CategorizeType
    extends FunctionType
{

    @XmlElement(name = "Value", required = true)
    protected String value;
    @XmlElementRefs({
        @XmlElementRef(name = "Value", 
            namespace = "http://com.example/example", type = JAXBElement.class),
        @XmlElementRef(name = "Threshold", 
            namespace = "http://com.example/example", type = JAXBElement.class)
    })
    protected List<JAXBElement<String>> thresholdAndValue;

    ...
}

当我取消您的 XML 时,我的分类.Value 是(而不是预期的),并且每个 ThresholdAndValue 的值(在我的情况下都是)是 ,等等。等丢失了。0.80.3Strings30.0, 40.0, 45.00.4, 0.45

当我从架构中删除第一个 Value 元素,然后取消元帅时,我得到了所有预期的值,所以肯定会有冲突!

但是,当我使用下列 JAXB 设置进行编组时:

ObjectFactory factory = new ObjectFactory();
CategorizeType catType = factory.createCategorizeType();
catType.setValue("0.3");
JAXBElement<String> thresh = factory.createCategorizeTypeThreshold("30.0");
JAXBElement<String> threshVal = factory.createCategorizeTypeValue("0.4");
JAXBElement<String> thresh2 = factory.createCategorizeTypeThreshold("40.0");
JAXBElement<String> threshVal2 = factory.createCategorizeTypeValue("0.45");
catType.getThresholdAndValue().add(thresh);
catType.getThresholdAndValue().add(threshVal);
catType.getThresholdAndValue().add(thresh2);
catType.getThresholdAndValue().add(threshVal2);
JAXBElement<CategorizeType> element = factory.createCategorize(catType);
// marshall to XML here!

我得到预期的输出:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Categorize xmlns="http://com.example/example">
    <Value>0.3</Value>
    <Threshold>30.0</Threshold>
    <Value>0.4</Value>
    <Threshold>40.0</Threshold>
    <Value>0.45</Value>
</Categorize>

我会继续研究这个!


答案 2

我认为你需要一个复杂的类型元素

            <xsd:sequence minOccurs="0" maxOccurs="unbounded">
                <xsd:element ref="se:Threshold"/>
                <xsd:element ref="se:Value"/>
            </xsd:sequence>

是否可以在运行 xjc 之前插入 XSLT 转换以将 ComplexType 添加到架构定义中?


推荐