使用 jdk 1.6 时出现以下错误,但它在 1.7 中工作
cannot find symbol method required() javax.xml.bind.annotation.XmlElementRef
任何想法?
@XmlElementRef(name = "test", type = JAXBElement.class, required = false)
protected JAXBElement<String> test;
最佳答案
检查 Java 1.6 here 中 XmlElementRef 注释的文档。其中没有 required
元素。这就是您收到此异常的原因。
关于java - 找不到符号方法 required() javax.xml.bind.annotation.XmlElementRef,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34791197/