サードパーティベンダーが提供するXSDファイルがあります。私はそのXSDファイルを解析し、Javaオブジェクトを生成する必要があります。私はJAXBを使用して、Mavenプラグインを使用してXSDファイルを解析しています。JAXBを使用してXSDで混合型データを整理する
私は最近、解析されているXMLのタグの1つからデータを使用する必要がありました。タグの複合型は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 Classは代わりに一覧<GeneralRemark>を有するので
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クラスは一覧<シリアライズ>が含まれています。
リスト<Serializable>からデータを取得する方法をたくさん検索し、以下のコードを使用してデータを抽出する方法を見つけました。
私は何らかの形でのComplexTypeを再定義するか、何とか正しいクラスがあるようにfalseに混合属性値を変更するかチリXSDまたはバインディングファイル(.xjc)でのComplexTypeを上書きすることが可能であるかどうかを知りたい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でExtend/Restrictを使用しようとしました。また、カスタム型を作成し、GeneralRemarks型要素を持つparentXMLノードを子xsdでカスタム複合型を使用するように拡張しようとしましたが、これらはすべて機能しませんでした。
私は多くの検索を試みましたが、このクエリに関連する解決策は見つかりませんでした。ほとんどのリンクはExtend/Restrictのどちらか一方のみを使用するように提案されていましたが、機能しませんでした。
何とか複合型をオーバーライドする方法があれば教えてください。