我有一个包含
的XML文件 <jaxbBean file="A.groovy"/>
<jaxbBean file="B.groovy"/>
现在我希望得到一个List<String>
,其中包含"A.groovy", "B.groovy"
。
我已经尝试过(并期望工作):
@XmlPath("jaxbBean/@file")
List<String> jaxbBeansClasses;
但那与任何东西都不匹配(包含null)。
MOXy能够如此简单地做到这一点吗?或者我是否需要引入一个额外的课程?
(我不想更改XML语法。)
答案 0 :(得分:0)
您的映射看起来正确,下面是一个完整的示例。由于您要对该字段进行注释,请确保您的课程中有@XmlAccessorType(XmlAccessType.FIELD)
(请参阅:http://blog.bdoughan.com/2011/06/using-jaxbs-xmlaccessortype-to.html)。
域模型(根)
import java.util.List;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {
@XmlPath("jaxbBean/@file")
List<String> jaxbBeansClasses;
}
<强> jaxb.properties 强>
要将MOXy指定为JAXB(JSR-222)提供程序,您需要在与域模型相同的包中包含名为jaxb.properties
的文件,并带有以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html):< / p>
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
<强>演示强>
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum17104179/input.xml");
Root root = (Root) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
<强> input.xml中/输出强>
<?xml version="1.0" encoding="UTF-8"?>
<root>
<jaxbBean file="A.groovy"/>
<jaxbBean file="B.groovy"/>
</root>