我想将一个元素解组为一个类型为对象的类属性,以保持它的通用性。
我尝试构建类并将其编组为 xml,然后将其解组,结果很好。但是当我尝试使用正常生成的 Xml 文档(尽管它具有相同的结构)执行此操作时,结果类对象属性的值为 null。
这是我的测试结构:
@XmlRootElement
public class TestStructure {
private Object test;
public Object getTest() {
return test;
}
public void setTest(Object test) {
this.test = test;
}
}
我尝试编组这个,并得到这个xml-document:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<testStructure>
<test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">foo</test>
</testStructure>
但是,如果我尝试通过 Domsource 任意构建此结构以获取相同的Xml 文档:
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
// root element
Document doc = docBuilder.newDocument();
Element rootElement = doc.createElement("testStructure");
doc.appendChild(rootElement);
Element test = doc.createElement("test");
test.appendChild(doc.createTextNode("foo"));
test.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
test.setAttribute("xsi:type", "xs:string");
test.setAttribute("xmlns:xs", "http://www.w3.org/2001/XMLSchema");
rootElement.appendChild(test);
并解组文件:
JAXBContext context2 = JAXBContext.newInstance(TestStructure.class);
Unmarshaller m2 = context2.createUnmarshaller();
TestStructure testobject2 =
( TestStructure ) m2.unmarshal(doc);
System.out.println(testobject2.getTest());
该属性似乎为“null”。
那么,出了什么问题?