当 JABX 解组器尝试解组 xml 时,我面临以下错误
线程“主”javax.xml.bind.UnmarshalException 中的异常 - 带有链接异常:[org.xml.sax.SAXParseException; 行号:1;列号:456;与元素类型“customerProductStatus”关联的属性“xsi:nil”的前缀“xsi”未绑定。]
当我查看从服务器返回的 xml 时,如下所示:
<customerProductStatus xsi:nil = "true"></customerProductStatus>
我没有看到任何父标签中定义的 xsi 。是否可以在不更改任何绑定的情况下将 schemaLocation 添加到解组器?
JAXBContext jaxbContext1 = JAXBContext.newInstance(Request.class);
Unmarshaller jaxbUnMarshaller1 = jaxbContext1.createUnmarshaller();
Request request = (Request)jaxbUnMarshaller1.unmarshal(receiveData.getBinaryStream());