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扩展来映射您的用例。

执行

您可以指定要映射到的元素的位置@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);
    }

}

输入.xml/输出

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

了解更多信息

于 2012-08-21T13:43:48.757 回答