我有一个由第三方供应商提供的XSD文件。我需要解析该XSD文件并生成Java对象。我正在使用JAXB来通过maven插件解析XSD文件。
一切进展顺利,直到我最近要求使用来自正在解析的XML中的一个标签的数据。标签的 complexType 具有 mixed = true ,因此JAXB生成的java类如下所示。
XSD复杂类型:
<xs:complexType name="Object_Data">
<xs:sequence>
<xs:element name="GeneralRemarks" type="GeneralRemarks" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>General remarks</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="GeneralRemarks" mixed="true">
<xs:sequence>
<xs:element name="GeneralRemark" type ="GeneralRemark" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="GeneralRemark" mixed="true">
<xs:sequence>
<xs:element name="GeneralRemark_RemarkQualifier" type="GeneralRemark_RemarkQualifier" minOccurs="1" maxOccurs="1"/>
<xs:element name="GeneralRemark_RemarkText" type="xs:string" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
生成JAXB类
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlMixed;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for GeneralRemarks complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="GeneralRemarks">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GeneralRemark" type="{}GeneralRemark" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GeneralRemarks", propOrder = {
"content"
})
public class GeneralRemarks {
@XmlElementRef(name = "GeneralRemark", type = JAXBElement.class)
@XmlMixed
protected List<Serializable> content;
/**
* Gets the value of the content property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the content property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getContent().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
* {@link JAXBElement }{@code <}{@link GeneralRemark }{@code >}
*
*
*/
public List<Serializable> getContent() {
if (content == null) {
content = new ArrayList<Serializable>();
}
return this.content;
}
}
GeneralRemarks类包含 List&lt; Serializable&gt; ,而不是 List&lt; GeneralRemark&gt; 。
我已经搜索了很多关于如何从List&lt; Serializable&gt;获取数据的信息。并找到了使用以下代码提取数据的解决方案。
GeneralRemarks remarks = xmlObject.getGeneralRemarks();
for(int i=0;i<remarks.getContent().size();i++){
if(remarks.getContent().get(i) instanceof JAXBElement<?>){
JAXBElement j = (JAXBElement)remarks.getContent().get(i);
org.w3c.dom.Element el = (org.w3c.dom.Element) j.getValue();
System.out.println("TEXT--"+el.getTextContent());
System.out.println("TAG--"+el.getTagName());
System.out.println("CHILD --"+el.getElementsByTagName("GeneralRemark_RemarkQualifier").item(0).getTextContent());
}
}
我想知道是否有可能以某种方式覆盖智能xsd或绑定文件(.xjc)中的ComplexType,以重新定义ComplexType或以某种方式将混合属性值更改为false,以便生成正确的类。
我试图在我的xsd中使用Extend / Restrict。还尝试创建自定义类型并扩展具有GeneralRemarks类型元素的parentXML节点,以在子xsd中使用我的自定义复杂类型,但所有这些都不起作用。
我尝试了很多搜索,但没有找到任何与此查询相关的解决方案。大多数链接建议只使用Extend / Restrict但它们不起作用
请建议是否有任何解决方案以某种方式覆盖复杂类型。
答案 0 :(得分:0)
您可以使用jaxb2-simplify
插件,特别是simplify:as-element-property扩展程序来生成与您描述的方式类似的对象。但是如果你不使用maven,那么执行插件作为xjc
命令行的扩展似乎不实用,所以我尝试使用maven代替如here