2010-10-19 72 views
2

我有一个简单的类CustomQuoteRequest:映射一个Java属性设置几个XML属性使用JAXB和莫西

public class CustomQuoteRequest { 

    private String requestId; 

    private String currencyPairCode; 

    public String getRequestId() { 
    return requestId; 
    } 

    public void setRequestId(String requestId) { 
    this.requestId = requestId; 
    } 

    public String getCurrencyPairCode() { 
    return currencyPairCode; 
    } 

    public void setCurrencyPairCode(String currencyPairCode) { 
    this.currencyPairCode = currencyPairCode; 
    } 
} 

我想currencyPairCode映射到XML两种不同的属性。这是我使用的莫西映射文件:

<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="com.anz.fxeasy.domain.model.quote.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> 
       <xml-element java-attribute="currencyPairCode" xml-path="QuotReq/QuoteReq/Leg/Leg/@Sym"></xml-element> 
      </java-attributes> 
     </java-type> 
    </java-types> 

但是第二个XML元素似乎覆盖前一个。有任何想法吗? 非常感谢

回答

2

的EclipseLink莫西的2.1.x

在EclipseLink的2.1.x的,你可以使用XML定制,以实现这一点。您的外部元数据如下所示:

<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莫西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> 

以下错误可用于追踪此支持:

+0

太棒了,非常感谢! – Sergio 2010-10-19 20:21:06