1

誰かが、EclipseLink MOXy を使用した JAXB マーシャリングを使用して、タグが繰り返される XML を生成するのを手伝ってくれますか?

@XmlPath("ExecRpt/Pty/@ID") --"ABC"
@XmlPath("ExecRpt/Pty/@ID") --"ABD"
@XmlPath("ExecRpt/Instrmt/@Exch") --"AAA"

私は結果を期待しています:

 <ExecRpt> <pty ID="ABC"/> <Instrmt Exch="AAA"/><pty ID="ABD"/>  </ExecRpt>

以下のアプローチを使用して、注釈付きの Bean から XML に生成しています。

 JAXBContext.createMarshaller()
 Marshaller.marshal()

事前にどうもありがとう

4

1 に答える 1

1

以下は、EclipseLink JAXB(MOXy)@XmlPath拡張機能を使用してユースケースをマッピングする方法の例です。

ExecRpt

マップする要素の位置を指定できます@XmlPath("Pty[2]/@ID")

package forum12052961;

import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement(name="ExecRpt")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(propOrder={"field1", "field2", "field3"})
public class ExecRpt {

    @XmlPath("Pty[1]/@ID")
    String field1;

    @XmlPath("Instrmt/@Exch")
    String field2;

    @XmlPath("Pty[2]/@ID")
    String field3;

}

jaxb.properties

MOXyをJAXBプロバイダーとして指定するにはjaxb.properties、ドメインモデルと同じパッケージで次のエントリを含むファイルを呼び出す必要があります( http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-asを参照)。 -your.html)。

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

デモ

package forum12052961;

import java.io.File;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(ExecRpt.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum12052961/input.xml");
        ExecRpt execRpt = (ExecRpt) unmarshaller.unmarshal(xml);

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(execRpt, System.out);
    }

}

input.xml / Output

<?xml version="1.0" encoding="UTF-8"?>
<ExecRpt>
   <Pty ID="ABC"/>
   <Instrmt Exch="AAA"/>
   <Pty ID="ABD"/>
</ExecRpt>

詳細については

于 2012-08-21T13:43:48.757 に答える