我们使用 CXF 框架和用于 java 服务器和 .NET 客户端的 aegis 映射器。默认情况下,我们为 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"/>