@XmlPath
JAXB (JSR-222)のEclipseLink MOXy実装の拡張機能です。目的の動作を得るには、MOXy のマッピング ファイルで同等のものを使用する必要があります。
oxm.xml
あなたが探しているのは、フィールド/プロパティに複数の書き込み可能なマッピングを適用する機能です。これは現在、注釈を介して行うことはできませんが、MOXy の外部マッピング ドキュメントを使用して行うことができます。
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="forum12704491">
<java-types>
<java-type name="Item">
<java-attributes>
<xml-element java-attribute="attrValue" xml-path="key1/@id"/>
<xml-element java-attribute="attrValue" xml-path="key2/@id" write-only="true"/>
<xml-element java-attribute="attrValue" xml-path="key3/@id" write-only="true"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
アイテム
package forum12704491;
import javax.xml.bind.annotation.*;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Item {
private String attrValue;
private String key1;
private String key2;
private String key3;
}
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
デモ
以下のデモ コードは、MOXy の外部マッピング ドキュメントを使用してブートストラップする方法を示しています。
package forum12704491;
import java.io.File;
import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
public class Demo {
public static void main(String[] args) throws Exception {
Map<String, Object> properties = new HashMap<String, Object>(1);
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, "forum12704491/oxm.xml");
JAXBContext jc = JAXBContext.newInstance(new Class[] {Item.class}, properties);
File xml = new File("src/forum12704491/input.xml");
Unmarshaller unmarshaller = jc.createUnmarshaller();
Item item = (Item) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(item, System.out);
}
}
input.xml/出力
<?xml version="1.0" encoding="UTF-8"?>
<item>
<key1 id="default">value1</key1>
<key2 id="default">value2</key2>
<key3 id="default">value3</key3>
</item>