Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在解组 XmlAdapter 的 ValueType 和 BoundType 时,我需要知道元素上下文。我需要解析一些代表 XPath 2.0 表达式的属性,并且我需要收集命名空间上下文以供其执行。
有没有办法让 JAXB 返回我的 DOM 节点作为解组的上下文作为附加信息?
我不确定我是否正确理解了您的问题,但不可能从 JAXB 获取不作为上下文的 DOM。原因是 JAXB 与 DOM 无关(至少不一样)。
我不知道这是否对您有帮助,但您可以通过编写以下内容为特定类创建 JAXBContext:
JAXBContext.newInstance(YourClass.class);