访问 Spring 注入的 EntityManager 的会话

发布于 2024-12-23 05:59:36 字数 277 浏览 1 评论 0原文

在我的应用程序中,我通过 Spring 注入了 EntityManager。我如何访问 EntityManager 会话?当我尝试这样做时:

Session session = ((EntityManagerImpl) entityManager).getActiveSession();

我收到强制转换异常,因为 spring 注入了实体管理器的代理。请让我知道如何执行此操作。

注意:我使用的是 Eclipselink JPA。

谢谢。

In my application, i have injected EntityManager through Spring. How can i access EntityManager session? When i tried to do this:

Session session = ((EntityManagerImpl) entityManager).getActiveSession();

I get casting exception, as spring injects a proxy for entityManager. Please let me know how to do this.

Note: I'm using Eclipselink JPA.

Thanks.

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

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

发布评论

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

评论(2

来世叙缘 2024-12-30 05:59:36

您应该使用 unwrap EntityManager 的 方法来访问提供者特定的实现。

PS:我在 EclipseLink javadoc 中没有找到任何 EntityManagerImpl。它在哪里?

You should use the unwrap method of EntityManager to access the provider-specific implementation.

PS: I've not found any EntityManagerImpl in EclipseLink javadoc. Where is it?

风尘浪孓 2024-12-30 05:59:36

您可以按照 @JBNizet 的建议使用unwrap。但是,这要求您使用符合 JPA 2.0 的 API。但是,如果您被迫使用 JPA 1.0,请尝试 JpaHelper 类。它的 getEntityManager 方法可用于获取活动会话。

JpaHelper.getEntityManager(entityManager).getActiveSession()

You can use the unwrap as suggested by @JBNizet. However that requires that you be using JPA 2.0 compliant API. If however you are constrained to use JPA 1.0 try the JpaHelper class. Its getEntityManager method can be used to get at the active session.

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