2

私は春を使おうとしています(@AutowireJaxb Modelクラスへの注釈)

.....

@XmlAttribute(name = "object-id")
@XmlSchemaType(name = "positiveInteger")
protected BigInteger objectId;

@XmlTransient
@Autowired MediationCacheManager cacheManager;

MediationCacheManager3 つのインターフェイスから拡張された場所

JaxbContext の作成時に、例外をキャッチします。 Exception [EclipseLink-50089] (Eclipse Persistence Services - 2.5.0.v20121116-8650760): org.eclipse.persistence.exceptions.JAXBException Exception Description: The java interface com.netcracker.mediation.common.caches.api.MediationCacheManager can not be mapped by JAXB as it has multiple mappable parent interfaces. Multiple inheritence is not supported

もちろん、eclipselink が多重継承をサポートしていないことは理解していますが、どうすればcacheManagerJaxb 処理からフィールドをスキップできますか? 私に関しては、XmlTransient注釈によって行う必要がありますが、機能しません。何か考えはありますか?

4

1 に答える 1

2

表示されている問題は、EclipseLink 2.5.1 および 2.6.0 ストリームで修正されたバグ ( http://bugs.eclipse.org/411993 ) に対応しています。2013 年 7 月 4 日以降、次のリンクからナイトリー ビルドをダウンロードできます。


回避策

MOXy の外部マッピング ドキュメントを使用して、のスーパータイプをオーバーライドMediationCacheManagerして、ユース ケースを機能させることができます (参照: http://blog.bdoughan.com/2010/12/extending-jaxb-representing-annotations.html )。

oxm.xml

<?xml version="1.0"?>
<xml-bindings
    xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
    package-name="forum17458822">
    <java-types>
        <java-type name="MediationCacheManager" super-type="java.lang.Object"/>
    </java-types>
</xml-bindings>

デモ

import java.util.*;
import javax.xml.bind.JAXBContext;
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, "forum17458822/oxm.xml");
        JAXBContext jc = JAXBContext.newInstance(new Class[] {Foo.class}, properties);
    }

}
于 2013-07-04T09:14:23.907 に答える