注意:我在NDA下,所以我必须使用没有意义的变量名。抱歉

你好!
我有一个抽象类:

public abstract class A {

    public abstract List<String> someMethod();

}


和两个扩展该抽象类的类:

@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@XmlRootElement(name = "BField")
@XmlAccessorType(XmlAccessType.FIELD)
public class B extends A {
...
}

@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@XmlRootElement(name = "CField")
@XmlAccessorType(XmlAccessType.FIELD)
public class C extends A {
...
}


然后在代码中的某处有一个类,列出了这两个类。大致如下所示:

@XmlElementWrapper(name = "MyStuffData")
    @XmlAnyElement(lax = true)
    @XmlElementRefs({
            @XmlElementRef(name = "B", type = B.class),
            @XmlElementRef(name = "C", type = C.class),
    })
    private List<A> myStuff;


myStuff的内容可以是B或C,对吗?我如何遍历该列表?我从肥皂请求中获取数据,所以我对如何执行操作感到非常困惑。我试过了:

for(A a: myStuff){
       ...some code here...
}


但是我得到这个异常:

Caused by: java.lang.ClassCastException: org.apache.xerces.dom.ElementNSImpl cannot be cast to some.package.here.A


我听说过lax = true可以解决问题,但是我仍然遇到相同的错误。令人费解的是,我可以获得相当准确的列表大小,但随后无法对其进行迭代。任何帮助,将不胜感激。抱歉,我不太擅长于说明,因此在Google上找到这种东西有点痛苦。

最佳答案

对于此用例,您不应使用@XmlAnyElement(lax=true)


http://blog.bdoughan.com/2012/12/jaxbs-xmlanyelementlaxtrue-explained.html




用例#1-@XmlElementRef

使用@XmlElementRef时,需要确保@XmlElementRef批注上的元素名称与@XmlRootElement(或@XmlElementDecl)批注完全匹配。


http://blog.bdoughan.com/2010/11/jaxb-and-inheritance-using-substitution.html


input.xml

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <MyStuffData>
        <BField/>
        <CField/>
        <BField/>
    </MyStuffData>
</root>




import java.util.List;
import javax.xml.bind.annotation.*;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    @XmlElementWrapper(name = "MyStuffData")
    @XmlElementRefs({
            @XmlElementRef(name = "BField", type = B.class),
            @XmlElementRef(name = "CField", type = C.class),
    })
    private List<A> myStuff;

    public List<A> getMyStuff() {
        return myStuff;
    }

}




用例#2-@XmlElements

如果您不希望元素名称与引用类型的根元素名称相同,则可以使用@XmlElements批注。


http://blog.bdoughan.com/2010/10/jaxb-and-xsd-choice-xmlelements.html


input.xml

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <MyStuffData>
        <B/>
        <C/>
        <B/>
    </MyStuffData>
</root>




import java.util.List;
import javax.xml.bind.annotation.*;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    @XmlElementWrapper(name = "MyStuffData")
    @XmlElements({
            @XmlElement(name = "B", type = B.class),
            @XmlElement(name = "C", type = C.class),
    })
    private List<A> myStuff;

    public List<A> getMyStuff() {
        return myStuff;
    }

}




共同

以下是这两种用例的共同点。

一种

public abstract class A {
}




import javax.xml.bind.annotation.*;

@XmlRootElement(name = "BField")
public class B extends A {
}


C

import javax.xml.bind.annotation.*;

@XmlRootElement(name = "CField")
public class C extends A {
}


演示版

import java.io.File;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Root.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum17061559/input.xml");
        Root root = (Root) unmarshaller.unmarshal(xml);

        for(A a : root.getMyStuff()) {
            System.out.println(a);
        }
    }

}


输出量

forum17061559.B@6998e5d9
forum17061559.C@351a3fb8
forum17061559.B@4e4d6

10-04 19:16