注: 私は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);
}
}
input.xml / Output
<?xml version="1.0" encoding="UTF-8"?>
<person>
<firstName value="asd"/>
<lastName value="bcd"/>
<email value="qwe"/>
</person>