CXF:为数组元素设置minOccurs = 0

时间:2010-02-26 13:31:25

标签: java web-services cxf aegis

对于java服务器和.NET客户端,我们使用带有aegis映射器的CXF框架。 默认情况下,对于WSDL中的类中的所有变量,我们都有minOccurs = 0。 我们在CXF配置中使用这样的设置来阻止它:

    <bean id="aegisBean" class="org.apache.cxf.aegis.databinding.AegisDatabinding" scope="prototype">
    <property name="configuration">
        <bean class="org.apache.cxf.aegis.type.TypeCreationOptions">
            <property name="defaultNillable" value="false"/>
            <property name="defaultMinOccurs" value="1"/>
        </bean>
    </property>
</bean>

但我们还有另一个数组问题。对于数组,我们在WSDL中有这样的代码:

 <xsd:complexType name="ArrayOfDetails">
 <xsd:sequence> 
  <xsd:element maxOccurs="unbounded" name="Details" type="tns:Details"/>
 </xsd:sequence> 
 </xsd:complexType>

不接受空数组:

org.apache.cxf.interceptor.Fault: The number of elements in {http://dto.WebServices.com}ArrayOfDetails does not meet the mini mum of 1

是否可以在数组中添加注释,将minOccurs =“0”设置为数组的元素(而不是整个数组)?或者是否可以将其设置为所有阵列的aegis配置?

<xsd:element minOccurs="0" maxOccurs="unbounded" name="Details" type="tns:Details"/>

1 个答案:

答案 0 :(得分:0)

您应该使用mapping file

 <mappings>
  <mapping name="ArrayOfDetails">
    <property name="Details" minOccurs='0'/>
  </mapping>
</mappings>