重载 Hibernate 映射 POJO
是否可以重载 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.