注意: 我是EclipseLink JAXB (MOXy)负责人,也是JAXB (JSR-222)专家组的成员。
PS 我知道 MOXy JAXB 实现,但我想知道是否可以通过参考 JAXB 实现来实现。
为了比较起见,我添加了如何使用 EclipseLink JAXB (MOXy) 的@XmlPath
扩展来完成此操作。
人
package forum12928971;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
class Person{
@XmlPath("firstName/@value")
String firstName;
@XmlPath("lastName/@value")
String lastName;
@XmlPath("email/@value")
String email;
}
jaxb.properties
要将 MOXy 指定为您的 JAXB 提供程序,您需要添加一个jaxb.properties
在与您的域模型相同的包中调用的文件,其中包含以下条目:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
演示
package forum12928971;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Person.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum12928971/input.xml");
Person person = (Person) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(person, System.out);
}
}
输入.xml/输出
<?xml version="1.0" encoding="UTF-8"?>
<person>
<firstName value="asd"/>
<lastName value="bcd"/>
<email value="qwe"/>
</person>