关于 setFlushMode 对注入的、容器管理的 EntityManager 的影响的问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的假设是正确的。是的,注入的 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