MOXy JAXB を使用して XML ファイルを非整列化しようとしています。生成済みの一連のクラスがあり、必要なすべての XML 要素をモデルにマップするために Xpath を使用しています。
次のような XML ファイルがあります。
<?xml version="1.0" encoding="UTF-8"?>
<fe:Facturae xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:fe="http://www.facturae.es/Facturae/2009/v3.2/Facturae">
<Parties>
<SellerParty>
<LegalEntity>
<CorporateName>Company Comp SA</CorporateName>
<TradeName>Comp</TradeName>
<ContactDetails>
<Telephone>917776665</Telephone>
<TeleFax>917776666</TeleFax>
<WebAddress>www.facturae.es</WebAddress>
<ElectronicMail>facturae@mityc.es</ElectronicMail>
<ContactPersons>Fernando</ContactPersons>
<CnoCnae>28000</CnoCnae>
<INETownCode>2134AAB</INETownCode>
<AdditionalContactDetails>Otros datos</AdditionalContactDetails>
</ContactDetails>
</LegalEntity>
</SellerParty>
<BuyerParty>
<Individual>
<Name>Juana</Name>
<FirstSurname>Mauriño</FirstSurname>
<OverseasAddress>
<Address>Juncal 1315</Address>
<PostCodeAndTown>00000 Buenos Aires</PostCodeAndTown>
<Province>Capital Federal</Province>
<CountryCode>ARG</CountryCode>
</OverseasAddress>
<ContactDetails>
<Telephone>00547775554</Telephone>
<TeleFax>00547775555</TeleFax>
</ContactDetails>
</Individual>
</BuyerParty>
</Parties>
</fe:Facturae>
それから私は私のモデルを持っています:
@XmlRootElement(namespace="http://www.facturae.es/Facturae/2009/v3.2/Facturae", name="Facturae")
public class Facturae implements BaseObject, SecuredObject, CreationDataAware {
@XmlPath("Parties/SellerParty")
private Party sellerParty;
@XmlPath("Parties/BuyerParty")
private Party buyerParty;
}
public class Party implements BaseObject, SecuredObject, CreationDataAware {
@XmlPath("LegalEntity/ContactDetails")
private ContactDetails contactDetails;
}
ご覧のとおり、<ContactDetails></ContactDetails>
は<SellerParty></SellerParty>
andにあり<BuyerParty></BuyerParty>
ますが、この 2 つのタグは同じ JAVA オブジェクト (Party) を共有しています。前のマッピング (@XmlPath("LegalEntity/ContactDetails")) では、SellerParty で ContactDetails 情報を正しく渡すことができますが、同時に ContactDetails も渡したいと考えて<BuyerParty>
います。
私はそのようなことを試みていました:
@XmlPaths(value = { @XmlPath("LegalEntity/ContactDetails"),@XmlPath("Individual/ContactDetails") })
private ContactDetails contactDetails;
しかし、うまくいきません。
手を貸してくれませんか?
どうもありがとうございました。