关于 setFlushMode 对注入的、容器管理的 EntityManager 的影响的问题

发布于 2024-11-30 01:49:58 字数 401 浏览 1 评论 0原文

我正在使用 EJB 3.1,并且有一个无状态会话 Bean,我正在将 EntityManager 注入其中。 EJB 的方法之一调用entityManager.setFlushMode(FlushModeType.COMMIT)。

有两个问题:

1) 我假设这会影响属于此事务的所有 EJB。因此,例如,如果此 SSB 调用另一个使用 REQUIRED 事务属性的 EJB 上的另一个方法,并且该 EJB 还注入了 EntityManager,则该方法使用的实体管理器也将处于 COMMIT 刷新模式。这是真的吗?还是必须在被调用的方法中显式设置刷新模式,即使它位于同一个 TX 中?

2)在实体管理器上设置flushMode是否会影响注入其他EJB但在不同事务中使用的相同PU的任何其他实体管理器?我认为不会。

谢谢。

I am using EJB 3.1 and I have a Stateless Session Bean that I am injecting an EntityManager into. One of the EJB's methods calls entityManager.setFlushMode(FlushModeType.COMMIT).

Two questions:

1) I assume that affects all EJBs that are part of this transaction. So for example if this SSB calls another method on another EJB which uses the REQUIRED transaction attribute and that EJB also injects an EntityManager then that entityManager used by that method will also be in a COMMIT flush mode. Is that true or do you have to explicitly set the flush mode in the method being called even if it is in the same TX?

2) Will setting the flushMode on the entity manager affect any other entity managers for the same PU injected into other EJBs but used in different transactions? I would assume not.

Thnx.

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

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

发布评论

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

评论(1

迷荒 2024-12-07 01:49:59

你的假设是正确的。是的,注入的 EntityManager 上的 setFlushMode 会影响同一事务中 PU 的所有 EM。不会,不会影响其他交易中的 EM。请参阅此答案:EJB 3.1 事务、EntityManager

Your assumptions are correct. Yes, setFlushMode on the injected EntityManager affects all EMs for the PU in the same transaction. No, it will not affect EMs in other transactions. See this answer: EJB 3.1 Transaction, EntityManager

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