cxf jax-ws在使用泛型方法时没有子类的complexType

时间:2015-02-25 16:12:51

标签: soap wsdl cxf jax-ws-customization

我不太熟悉CXF配置。在这里,我遇到一种情况,即一个对象(子类)将用于客户端,但它没有在端点中声明。

例如,有一个超级班级" SuperClass"和两个子类" SubClassA"和" SubClassB"。在端点中声明了以下方法:

public <T extends SuperClass> T search(Criteria criteria, ClassType type);

因此,这些子类不会出现在Endpoint中,并且导致wsdl中缺少complexType。当从客户端调用子类的对象时,提示没有读取类型时出错。

org.apache.cxf.interceptor.Fault: 
Could not determine how to read type: {http://model.fmchan.com}SubClassA

所以在这里我想寻找一个解决方案,将这些子类添加到wsdl中,以便在客户端正确调用。

如果配置正确,则应在wsdl:

上显示以下内容
<xsd:complexType name="SubClassA">
    <xsd:sequence>
        <xsd:element minOccurs="0" name="date" type="xsd:dateTime"/>
    </xsd:sequence>
</xsd:complexType>

附上服务器端的配置供您参考。

<import resource="classpath:META-INF/cxf/cxf.xml" />

<bean id="aegisContext" class="org.apache.cxf.aegis.AegisContext"
    p:writeXsiTypes="true" scope="prototype" />
<bean id="aegisBean" p:aegisContext-ref="aegisContext"
    class="org.apache.cxf.aegis.databinding.AegisDatabinding"
    scope="prototype" />

<bean id="genericServiceImpl" class="com.fmchan.service.SomeEndpointImpl"/>

<jaxws:endpoint implementor="#genericServiceImpl"
    address="${service.address}">
    <jaxws:serviceFactory>
        <ref bean="jaxws-and-aegis-service-factory" />
    </jaxws:serviceFactory>
</jaxws:endpoint>

<bean id="jaxws-and-aegis-service-factory"
    class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"
    scope="prototype">
    <property name="dataBinding">
        <bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
    </property>
</bean>

感谢您提前提供任何帮助。

1 个答案:

答案 0 :(得分:0)

我提出的最简单的解决方案是创建一个虚拟方法,包括那些子类A和B作为端点的参数。它可能不是最佳解决方案,我仍然寻求更好的解决方案。