Jaxb XML封送处理ISO20022

时间:2018-11-20 10:20:14

标签: jaxb

我尝试生成(java 6)xml文件,该文件应具有根目录:

<Document xmlns=”urn:iso:std:iso:20022:tech:xsd:pain.001.001.03”
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”>

我的包裹信息如下所示

@XmlSchema(
    namespace="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03",
    elementFormDefault=XmlNsForm.QUALIFIED,
    xmlns={
        @XmlNs(prefix="", namespaceURI="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"),         
        @XmlNs(prefix="xsi", namespaceURI="http://www.w3.org/2001/XMLSchema-instance")        
    }
)

我得到这样的xml文件

<ns2:Document xmlns:ns2="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"   xmlns:ns3="inner">
    <ns2:CstmrCdtTrfInitn>
        <ns2:GrpHdr>..........
        ..............
    </ns2:CstmrCdtTrfInitn>
</ns2:Document>

我不知道怎么了。

0 个答案:

没有答案