我试图在以下线程中运行相同的示例:
JAXB Annotations - Mapping interfaces and @XmlElementWrapper
但我收到以下例外情况:
意外元素(uri:"",本地:“狗”)。期望元素是<{奇怪的问号符号}>catchAll>
..。
知道我为什么会有这个例外吗?
发布于 2010-12-01 11:01:25
我成功地运行了这个示例,但是在将XmlElements标记与java.uill.List一起使用之后,下面的代码如下:
@XmlRootElement class Zoo {
@XmlElements({
@XmlElement(name = "Dog" , type = Dog.class),
@XmlElement(name = "Cat" , type = Cat.class)
})
private List<Animal> animals;
public static void main(String[] args) throws Exception {
Zoo zoo = new Zoo();
zoo.animals = new ArrayList<Animal>();
Dog doggy = new Dog();
doggy.setDogProp("Doggy");
Cat catty = new Cat();
catty.setCatProp("Catty");
zoo.animals.add(doggy);
zoo.animals.add(catty);
JAXBContext jc = JAXBContext.newInstance(Zoo.class, Dog.class, Cat.class);
Marshaller marshaller = jc.createMarshaller();
ByteArrayOutputStream os = new ByteArrayOutputStream();
marshaller.marshal(zoo, os);
System.out.println(os.toString());
Unmarshaller unmarshaller = jc.createUnmarshaller();
unmarshaller.setEventHandler(new javax.xml.bind.helpers.DefaultValidationEventHandler());
Zoo unmarshalledZoo = (Zoo) unmarshaller.unmarshal(new ByteArrayInputStream(os.toByteArray()));
if (unmarshalledZoo.animals == null) {
System.out.println("animals was null");
} else if (unmarshalledZoo.animals.size() == 2) {
System.out.println("it worked");
} else {
System.out.println("failed!");
}
}
public interface Animal {
}
@XmlRootElement
public static class Dog implements Animal {
private String dogProp;
public String getDogProp() {
return dogProp;
}
public void setDogProp(String dogProp) {
this.dogProp = dogProp;
}
}
@XmlRootElement
public static class Cat implements Animal {
private String catProp;
public String getCatProp() {
return catProp;
}
public void setCatProp(String catProp) {
this.catProp = catProp;
}
}}
https://stackoverflow.com/questions/4296588
复制相似问题