注: 私はEclipseLink JAXB(MOXy)のリーダーであり、JAXB 2(JSR-222)エキスパートグループのメンバーです。
ほとんどのXMLバインディングライブラリでは、XML表現のネストのレベルごとにオブジェクトが必要です。EclipseLink JAXB(MOXy)には、@XmlPath
XPathベースのマッピングでこの制限を取り除くことができる拡張機能があります。
例
@XmlPath
以下は、拡張機能をユースケースに適用する方法のデモンストレーションです。
package forum10511601;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement(name="Example")
@XmlAccessorType(XmlAccessType.FIELD)
class Example {
@XmlAttribute
private String library;
@XmlPath("book/AUTHORS_TEST/text()")
private String authorsTest;
@XmlPath("book/EXAMPLE_TEST/text()")
private String exampleTest;
}
jaxb.properties
MOXyをJAXBプロバイダーとして指定するにはjaxb.properties
、ドメインモデルと同じパッケージで名前が付けられたファイルを次のエントリで追加する必要があります(「JAXBプロバイダーとしてのEclipseLink MOXyの指定」を参照)。
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
デモ
MOXyはJAXB(JSR-222)実装であるため、標準のJAXBランタイムAPI(JavaSE6以降のJRE/JDKに含まれています)を使用します。
package forum10511601;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Example.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum10511601/input.xml");
Example example = (Example) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(example, System.out);
}
}
input.xml / Output
<?xml version="1.0" encoding="UTF-8"?>
<Example library="somewhere">
<book>
<AUTHORS_TEST>Author_Name</AUTHORS_TEST>
<EXAMPLE_TEST>Author_Name</EXAMPLE_TEST>
</book>
</Example>