我正在尝试使用 EclipseLink MOXy JAXB 实现来整理一些 XML 数据。我有以下带注释的类,它有一个自己类型的成员:
package stackoverflow.q19191209;
import javax.xml.bind.annotation.*;
@XmlRootElement(name="Item")
public class Item
{
@XmlAttribute(name="name")
@XmlID
private String m_name;
@XmlAttribute(name="parent")
@XmlIDREF
private Item m_parent;
}
此类在 jaxb.index 中列出。当我尝试引导我的 JAXBContext 时:
JAXBContext context = JAXBContext.newInstance("stackoverflow.q19191209");
它挂了一秒钟,然后给了我一个 StackOverflowError:
Exception in thread "main" java.lang.StackOverflowError
at java.util.HashMap$ValueIterator.<init>(HashMap.java:820)
at java.util.HashMap$ValueIterator.<init>(HashMap.java:820)
at java.util.HashMap.newValueIterator(HashMap.java:843)
at java.util.HashMap$Values.iterator(HashMap.java:910)
at org.eclipse.persistence.jaxb.compiler.AnnotationsProcessor.hasTextMapping(AnnotationsProcessor.java:3998)
at org.eclipse.persistence.jaxb.compiler.AnnotationsProcessor.hasTextMapping(AnnotationsProcessor.java:4003)
at org.eclipse.persistence.jaxb.compiler.AnnotationsProcessor.hasTextMapping(AnnotationsProcessor.java:4003)
...
当我使用默认的 JAXB 提供程序时,这不会发生 - 它正确解组,并且所有关系都正确建立。这是一个 MOXy 错误吗?
我已经尝试过 JDK 1.6.0_25 和 JDK 1.7.0_21,以及 MOXy 版本 2.5.0、2.5.1 和 2.6.0 - 结果相同。
谢谢!史蒂夫