以下任何XPath表达式都可接受吗?使用eclipselink 2.3.1版
@XmlPath("../header/@type")
@XmlPath("/root/header/@type")
@XmlPath("parent::*/header/@type")
基本上,这是在XML文档(
/root/tag
)中重复的类中,如果不清楚,我将详细说明。我正在尝试遍历树,而不是遍历树。我的其他
@XmlPath
批注工作正常。 最佳答案
EclipseLink JAXB (MOXy) 当前不支持轴/父级。如果您对这种支持感兴趣,请输入一个增强请求:
它确实支持XPath,例如:
有关更多信息
关于xpath - EclipseLink MOXy @XmlPath对轴/父级的支持,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8404134/