JPA 最佳实践

发布于 2024-10-10 01:10:23 字数 124 浏览 2 评论 0原文

我想知道使用 JpaDaoSupport 是否是一个好的做法。 我们当前使用 EclipseLink 作为 JPA 提供程序,并且想知道是否最好转向使用 JpaDaoSupport 类。

有人可以简单指出优点和缺点吗?

I would want to know if it is a good practise to use JpaDaoSupport.
We are using EclipseLink as JPA provider currently and would want to know if it is better to move towards using JpaDaoSupport class.

Could someone point the advantages and disadvantages briefly?

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

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

发布评论

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

评论(1

愿得七秒忆 2024-10-17 01:10:23

JpaDaoSupport 是在 DAO 类中提供 JpaTemplate 的便捷方法。

然而,JpaTemplate 大部分是多余的,Spring 团队建议不要在新项目中使用它(直接使用 EntityManager 代替)。

请参阅 javadoc

JpaTemplate 主要作为 JdoTemplate 和 HibernateTemplate 的兄弟姐妹存在,为习惯它的人提供相同的风格。对于新启动的项目,请考虑采用标准 JPA 风格的数据访问对象编码,基于通过 Spring bean 定义或 JPA PersistenceContext 注释注入的“共享 EntityManager”引用。

和参考文档:

JpaDaoSupport is a convenient way to provide JpaTemplate inside your DAO class.

However, JpaTemplate is mostly redundant and Spring team recommends not to use it in new projects (use EntityManager directly instead).

See javadoc:

JpaTemplate mainly exists as a sibling of JdoTemplate and HibernateTemplate, offering the same style for people used to it. For newly started projects, consider adopting the standard JPA style of coding data access objects instead, based on a "shared EntityManager" reference injected via a Spring bean definition or the JPA PersistenceContext annotation.

and Reference Documentation:

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