是否有办法仅注释 JAXB 的必填字段

发布于 2024-12-10 09:39:33 字数 249 浏览 0 评论 0原文

我正在努力使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-12-17 09:39:33

您可以使用 @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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文