客户端请求DTO和服务器端的DTO定义不一样,客户端必须定义@XmlAccessorType和@XmlType,如:

@XmlAccessorType(XmlAccessType.FIELD)

@XmlType(name = "insureAcceptMessageDTO", propOrder = {
    "applyId",
    "gateNo",
    "payAmount"
})

public class InsureAcceptMessageDTO {

...略

}

 

相关文章:

  • 2022-01-10
  • 2021-09-17
  • 2022-12-23
  • 2021-08-27
  • 2021-10-30
  • 2021-07-27
  • 2021-05-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-01
  • 2021-05-31
  • 2021-09-19
  • 2021-04-25
相关资源
相似解决方案