无法让 JAXB 通过简单示例处理接口

Can't get JAXB to handle interfaces with simple example

我正在尝试第 3.2.1 节 Unofficial JAXB Guide - Mapping interfaces — Project Kenai 中显示的 JAXB 接口的简单示例,但它对我不起作用。我在最新的 JDK 1.8_70 并且没有使用任何特殊的库。为完整起见,代码:

@XmlRootElement
class Zoo {
  @XmlAnyElement
  public List<Animal> animals;
}

interface Animal {
  void sleep();
  void eat();
  ...
}

@XmlRootElement
class Dog implements Animal { ... }

@XmlRootElement
class Lion implements Animal { ... }

有什么帮助吗?我得到的错误是:

[com.sun.istack.internal.SAXException2: class testjaxb.Cat nor any of its super class is known to this context.
javax.xml.bind.JAXBException: class testjaxb.Cat nor any of its super class is known to this context.]

编辑:发布 JAXBContext.newInstance 代码:

Zoo zoo = new Zoo();
zoo.animals = new ArrayList<Animal>();
zoo.animals.add( new Cat() );
zoo.animals.add( new Dog() );
zoo.animals.add( new Dog() );

JAXBContext ctx = JAXBContext.newInstance(Zoo.class);
Marshaller marshaller = ctx.createMarshaller();
marshaller.marshal(zoo, System.out);

尝试指定您提供给 JAXBContext.newInstance() 的列表中的其他 class。

JAXBContext ctx = JAXBContext.newInstance(Zoo.class, Cat.class, Dog.class);

@XmlSeeAlso 注释应用于 Zoo class 也应该有效。

@XmlRootElement
@XmlSeeAlso({Cat.class, Dog.class})
class Zoo {
    ...
}