我可以从运行时将 XmlAdapter 添加到 JAXB(不带注释)吗?
在所有情况下 XmlAdapter 与 @XmlJavaTypeAdapter
一起提及。是否可以从运行时 API 添加我的 XmlAdapter
(对于 CXF @XmlJavaTypeAdapter 解决方法是必要的) ?
In all cases XmlAdapter mentioned in pair with @XmlJavaTypeAdapter
. Is it possible add my XmlAdapter
from runtime API (necessary for CXF @XmlJavaTypeAdapter workaround)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注意:我是EclipseLink JAXB (MOXy) 的领导者和 JAXB 2 的成员(JSR-222)专家组。
MOXy 提供 JAXB(和 MOXy)元数据的 XML 表示形式,可用作注释的替代方案:
这个可以在 JAX-RS 环境中轻松利用映射文件:
此映射文件具有允许应用于对象模型的多个映射:
了解更多信息
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group.
MOXy offers an XML representation of the JAXB (and MOXy) metadata that can be used as an alternative to annotations:
This mapping file can be easily leveraged in a JAX-RS environment:
This mapping file has the added benefit of allowing multiple mappings to be applied to an object model:
For More Information