下面是一个示例,说明如何使用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>
了解更多信息