是否有办法仅注释 JAXB 的必填字段
我正在努力使用 JAXB 将 Hibernate 对象转换为 XML。在我们的班级中,我们有大约 50 个字段,而我只需要其中的 10 个。
基本上,我用 2 个属性定义了 XmlType#propOrder。 JAXB 抱怨说一些 public getter 不是 proporder 的一部分。 我发现,如果我不使用 XmlTransient/XmlElement 标记属性,JAXB 会对此进行抱怨。有没有办法跳过在每个字段上写入“XmlTransient”?
I'm working on to convert Hibernate objects to XML using JAXB. In our classes, we've around 50 fields from which I would need only 10 of them.
Basically, I'd defined XmlType#propOrder with 2 properties. JAXB complained that some public getters are not part of proporder.
I see that if I don't mark a property with either of XmlTransient/XmlElement, JAXB complains about it. Is there any way to skip writing 'XmlTransient' on every field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 @XmlAccessorType(XmlAccessType.NONE) 以便仅将带注释的字段/属性编组到 XML。 JAXB 不需要任何注释。只需要注释来覆盖默认行为。您看到什么例外情况?
了解更多信息
You can use
@XmlAccessorType(XmlAccessType.NONE)
so that only the annotated fields/properties are marshalled to XML. JAXB does not require any annotations. Annotations are only required to override the default behaviour. What exceptions are you seeing?For More Information