我必须访问一个有缺陷的Web服务,其中WSDL中的某些字段具有类型xs:date但我必须将它们填充为xs:dateTime. 是否可以使用JAXB Bindings文件来更改WSDL中字段的类型? WSDL的片段: xs:sequence xs
是否可以使用JAXB Bindings文件来更改WSDL中字段的类型?
WSDL的片段:
<xs:sequence> <xs:element name="startTime" type="xs:date" /> <xs:element name="stopTime" type="xs:date" /> </xs:sequence>您可以使用@XmlSchemaType批注来配置XML表示:
@XmlElement(name = "date-of-birth") @XmlSchemaType(name = "date") protected XMLGregorianCalendar dateOfBirth;
有关更多信息,请参阅
> http://bdoughan.blogspot.com/2011/01/jaxb-and-datetime-properties.html