一个类的多个 JAXB 序列化?
我有一个 A 类,用作 JAX-RS 方法的结果。我想以两种不同的方式将 A 编组到 xml 中。
有没有办法给resteasy 两个不同的映射以在我的类上使用?
问候, 劳雷斯
i have a Class A that is used as a result for a JAX-RS method. I want to marshal A into xml in two different ways.
Is there a way to give resteasy two different mappings to use on my class?
Greetings,
Laures
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意:我是EclipseLink JAXB (MOXy) JAXB 2 (JSR-222) 专家组。
您可以使用 MOXy 来实现此目的。请查看我的博客文章,其中我通过利用第一个映射的注释和第二个映射的 MOXy 的 XML 元数据,将相同的对象模型映射到两个不同的天气服务(Google 和 Yahoo):
下面是在 JAX 中使用 MOXy 的 XML 元数据的示例- RS环境:
了解更多信息
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group.
You could use MOXy for this. Check out my blog post where I map the same object model to two different weather services (Google and Yahoo) by leveraging annotations for one mapping and MOXy's XML metadata for the second mapping:
Below is an example of using MOXy's XML metadata in a JAX-RS environment:
For More Information
这是 JAXB RI 的解决方案。
相同的想法:在 XML 资源中定义 JAXB 注释。
Here is a solution for JAXB RI.
The same idea: define JAXB annotations in XML resources.