JAXB抛出InstantiationException试图根据抽象类编组xsi:type

时间:2013-07-30 19:20:03

标签: java xml jaxb moxy xsitype

我遇到使用继承和JAXB解组的问题。我已经阅读了一些例子(特别是http://blog.bdoughan.com/2010/11/jaxb-and-inheritance-using-xsitype.html上的参考博客和一个非常相似的SO问题:JAXB xsi:type subclass unmarshalling not working)并且我仍然遇到了困难。

与许多其他问题一样,我试图创建一个对象的XML表示,其字段依赖于子类来获取信息。我不知道在编译时具体的子类实现是什么,所以像XmlSeeAlso这样的东西实际上不可用。

在我的测试用例中,我有一个带有抽象类(A)的Root类,它具有一个具体的子类型(B):

@XmlRootElement
@ToString
    public class Root {

    private A theClass;

    public A getTheClass() {
        return theClass;
    }

    public void setTheClass(A theClass) {
        this.theClass = theClass;
    }
}

@ToString
public abstract class A {

}

@XmlRootElement
@ToString
public class B extends A {
    private  String b = "from B-" + System.currentTimeMillis()
    public String getB() {
       return b;
    }

    public void setB(String b) {
         this.b = b;
    }
}

其中@ToString是来自项目Lombok的注释。

我可以毫无问题地编组:

@Test
public void marshallTest() {

    try {
        Root r = new Root();
        B b = new B();

        r.setTheClass(b);
        Class<?>[] classArray = new Class<?> [] { Root.class, B.class };

        JAXBContext context = JAXBContext.newInstance(classArray);
        Marshaller marshaller = context.createMarshaller();

        try (FileWriter fw = new FileWriter(JAXB_TEST_XML)) {
            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
            marshaller.marshal(r, fw);
        }

        try(StringWriter sw = new StringWriter() ) {
            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
            marshaller.marshal(r, sw);
            log.debug("{}", sw.toString());
        }

    } catch (IOException | JAXBException e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
}

产生以下xml:

<root>
   <theClass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="b">
      <b>from B-1375211003868</b>
   </theClass>
</root>

当我尝试解组(使用MOXY JAXB实现)时,我得到:

This class does not define a public default constructor, or the constructor raised an exception.
Internal Exception: java.lang.InstantiationException
Descriptor: XMLDescriptor(xml.A --> [])

使用以下代码:

@Test
public void unmarshall() {

    try {
        JAXBContext context = JAXBContext.newInstance(new Class<?>[] {Root.class, A.class});
        DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();

        documentBuilderFactory.setNamespaceAware(true);
        DocumentBuilder db = documentBuilderFactory.newDocumentBuilder();

        Root r = null;
        try(BufferedInputStream bis = new BufferedInputStream(new FileInputStream(JAXB_TEST_XML))) {
            Document doc = db.parse(bis);
            Unmarshaller unmarshaller = context.createUnmarshaller();
            JAXBElement<?> result = unmarshaller.unmarshal(doc, Root.class);
            r = (Root) result.getValue();
        }

        assertTrue(r != null & r.getTheClass() != null && r.getTheClass() instanceof B);
    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
}

我已经尝试使解密命名空间感知(与JAXB xsi:type subclass unmarshalling not working一样没有用。我尝试过使用XmlElementRef也不行。我已经尝试了最新的glassfish api和从maven central下载的实现(2.2) .8)。我已经尝试过MOXY eclipse持久化JAXB实现。两者都没有用。我试过解组而不使用不起作用的文档构建器。我试过将Root.class和A.class传递给JAXB上下文这也行不通。

我有一种感觉,我对发生的事情有一个基本的误解。任何提示或想法将不胜感激。谢谢。

  • Chooks

1 个答案:

答案 0 :(得分:1)

更新2

您可以使用库动态确定子类,并将该结果传递给MOXy以构建JAXBContext。以下是为此目的而建议使用Jandex的增强请求。


更新1

在EclipseLink 1.2.0(2009年10月23日发布)之前出现了一个问题,即使所有内容都设置正确,也可能抛出该异常。


您只需要让JAXBContext知道B课程。一种方法是利用@XmlSeeAlso类上的A注释。

import javax.xml.bind.annotation.XmlSeeAlso;

@XmlSeeAlso({B.class})
public abstract class A {

}

您还可以在用于引导B的类中包含JAXBContext

JAXBContext jc = JAXBContext.newInstance(Root.class, B.class);