EclipseLink MOXy 2.1.X
В EclipseLink 2.1.X вы можете использовать XML Customizer для этого. Ваши внешние метаданные будут выглядеть следующим образом:
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.eclipse.org/eclipselink/xsds/persistence/oxm http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_1.xsd"
>
<java-types>
<java-type name="forum78.CustomQuoteRequest" xml-accessor-type="FIELD" xml-customizer="customizer.CustomQuoteRequestCustomizer">
<xml-root-element name="FIXML"/>
<java-attributes>
<xml-element java-attribute="requestId" xml-path="QuotReq/@ReqId"/>
<xml-element java-attribute="currencyPairCode" xml-path="QuotReq/QuoteReq/Instrmt/@Sym"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
В настройщике мы добавим второе сопоставление для свойства currencyCodePair. Нам нужно будет указать, что это отображение только для записи. Реализация настройщика XML будет выглядеть следующим образом:
package customizer;
import org.eclipse.persistence.config.DescriptorCustomizer;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.oxm.mappings.XMLDirectMapping;
public class CustomQuoteRequestCustomizer implements DescriptorCustomizer {
public void customize(ClassDescriptor descriptor) throws Exception {
XMLDirectMapping currencyPairCodeLegMapping = new XMLDirectMapping();
currencyPairCodeLegMapping.setAttributeName("currencyPairCode");
currencyPairCodeLegMapping.setXPath("QuotReq/QuoteReq/Leg/Leg/@Sym");
currencyPairCodeLegMapping.setIsWriteOnly(true);
descriptor.addMapping(currencyPairCodeLegMapping);
}
}
EclipseLink MOXy 2.2
В предстоящем выпуске EclipseLink 2.2 вы сможете сделать это, используя только внешние метаданные.
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.eclipse.org/eclipselink/xsds/persistence/oxm http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_1.xsd"
>
<java-types>
<java-type name="forum78.CustomQuoteRequest" xml-accessor-type="FIELD">
<xml-root-element name="FIXML"/>
<java-attributes>
<xml-element java-attribute="requestId" xml-path="QuotReq/@ReqId"/>
<xml-element java-attribute="currencyPairCode" xml-path="QuotReq/QuoteReq/Instrmt/@Sym"/>
<xml-element java-attribute="currencyPairCode" xml-path="QuotReq/QuoteReq/Leg/Leg/@Sym" write-only="true"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
Следующая ошибка может быть использована для отслеживания этой поддержки: