如何使用 java.sql.Connection 创建 hibernate 实体管理器

发布于 2024-11-28 03:16:31 字数 158 浏览 0 评论 0 原文

我想使用 java.sql.Connection 对象创建 Hibernate 实体管理器,没有持久性单元,有什么方法可以实现这一点吗?

场景是我的应用程序使用 Hibernate,在流程中我们将调用一个独立的 Java 程序,该程序返回一个连接对象,我必须使用相同的连接来持久化事务。

I want to create Hibernate entity manager using java.sql.Connection object, with out persistence unit, Is there any way to achieve this?

The scenario is my application uses Hibernate, in a flow we will call a independent Java program which returns a connection object, i have to use the same connection to persist the transaction.

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

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

发布评论

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

评论(1

陈甜 2024-12-05 03:16:31

您可以通过实现接口 org.hibernate.connection.ConnectionProvider,并通过 hibernate.connection.provider_class 属性指定您的自定义实现。

You can define your own plugin strategy for obtaining JDBC connections by implementing the interface org.hibernate.connection.ConnectionProvider, and specifying your custom implementation via the hibernate.connection.provider_class property.

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