Welcome to my website, have a nice day!
Dream it, Do it, Make it!

webservice服务报错:javax.xml.bind.MarshalException

webservice服务报错,信息如下:

javax.xml.bind.MarshalException
 - with linked exception:
[com.sun.istack.SAXException2: unable to marshal type "wsstub.sscm.importShipAdviceInfoRouteSrv.InputParameters" as an element because it is missing an @XmlRootElement annotation]

错误原因,实体类缺少注解@XmlRootElement,加上即可,如下:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InputParameters", propOrder = {
    "inputcollection",
    "msgheader"
})
@XmlRootElement(name="InputParameters")
public class InputParameters {

}
赞(0)
未经允许禁止转载:Ddmit » webservice服务报错:javax.xml.bind.MarshalException

评论 抢沙发

登录

找回密码

注册