将多个 pojo 合并为一个 pojo 的简单方法

发布于 2024-10-08 17:23:28 字数 93 浏览 2 评论 0原文

我有一份有多页的注册表。因此,我将一页映射到一个 pojo。最后,当我处理数据库时,我想将其作为单个 pojo 来提交。任何简化这个模型的想法。

谢谢 :)

Am having a registration form which has multiple pages. So, I am mapping one page to one pojo. Finally, when I processing with database, I want to make it as single pojo to commit. Any idea to simplify this model.

Thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

貪欢 2024-10-15 17:23:28

您可以创建一个包装 POJO,用主 POJO 中的附加帮助器方法来保存其他 POJO。

You can create a wrapper POJO which holds your other POJO's with additional helper methods in the master POJO.

若言繁花未落 2024-10-15 17:23:28

将多个 POJO 发送到您的服务级别以提交到数据库有什么问题。 Koekiebox 关于包装器 POJO 的建议将会起作用,但如果您添加或删除 POJO,也会添加另一个位置来进行更改。

如果数据确实属于一起,为什么不增加 POJO 中的字段数量并仅在表单和数据库中使用一个字段。

What is wrong with sending multiple POJOs to your service level to commit to the database. Koekiebox's suggestion of a wrapper POJO will work, but also will add another place to make changes to if you add or remove POJOs.

If the data truly belongs together why not increase the number of fields in your POJO and use just one for your form and database.

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