本文介紹了JAXB錯誤:有多個映射。由于兩個對象工廠具有相同的Bean的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有兩個Maven JAXB項目。
A:主Maven JAXB存根XSD項目,其中包含BASKET.xsd
B:Maven JAXB存根用戶-希望將BASKET.xsd包裝在自己的對象中的項目。
這會產生兩個對象工廠(不同的包),它們都聲明了以下內容…
@XmlElementDecl(namespace = "http://www.bob.org/bob/namespace/", name = "Basket")
public JAXBElement<BasketType> createBasket(BasketType value) {
return new JAXBElement<BasketType>(QNAME, BasketType.class, null, value);
}
此生成是通過此插件完成的。
Org.jvnet.jaxb2.maven2
Maven-jaxb2-plugin
0.13.2
在應用程序啟動時,收到CXF-RT-Frotnend-jaxrs3.1.11提示錯誤…
017-07-03 14:38:54,613845801: WARN : [RMI TCP Connection(3)-127.0.0.1] [] org.apache.cxf.jaxrs.utils.ResourceUtils: No JAXB context can be created
com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
The element name {http://www.bob.org/bob/namespace/}Basket has more than one mapping.
this problem is related to the following location:
at public javax.xml.bind.JAXBElement com.bob.bean.ObjectFactory.createBasket(org.bob.BasketType)
at com.bob.bean.ObjectFactory
this problem is related to the following location:
at public javax.xml.bind.JAXBElement org.userservice.bean.ObjectFactory.createBasket(org.bob.BasketType)
在從CXF 2.7.7升級到3.1.11之前,這不是我收到的錯誤
有人知道有沒有辦法讓maven-jaxb2-plugin不生成方法createBasket(..)在UserService對象工廠??
還是讓CXF接受兩個ObjectFactoty類上相同的兩個方法?
推薦答案
我的解決方案是更改
<property name="singleJaxbContext" value="true"/>
至
<property name="singleJaxbContext" value="false"/>
例如在我的應用程序-config.xml中
<bean id="jaxbextprovider" class="org.apache.cxf.jaxrs.provider.JAXBElementProvider">
<property name="singleJaxbContext" value="false"/>
</bean>
這篇關于JAXB錯誤:有多個映射。由于兩個對象工廠具有相同的Bean的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,