重载 Hibernate 映射 POJO

发布于 2024-10-04 18:49:59 字数 112 浏览 2 评论 0原文

是否可以重载 Hibernate POJO 以便将脏代码放在那里?为了明确起见,我想将表单中的数据作为字符串传递,并对这些 POJO 进行所有解析和转换。或者是否有其他方法可以做到这一点?

谢谢

Is it possible to overload Hibernate POJO's in order to put the dirty code there? To make it clear I want to pass the data from a my form as strings and do all the parsing and converting stuff on these POJO's.Or is there any alternative approach to do it?

Thanks

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

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

发布评论

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

评论(1

遮了一弯 2024-10-11 18:49:59

您可以使用 DTO 对象来表示表单中的数据,并使用字符串表示所有属性。然后在服务器端,您可以使用静态类将 DTO 对象转换为 POJO,并使用 Hibernate 映射到数据库。这样,您就可以保持 POJO 的清洁。

You can use DTO objects to represent the data in your form, and use strings for all properties. Then on the server side you can use a static class that converts the DTO object into a POJO that is mapped to the database with Hibernate. That way, you can keep the POJO's clean.

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