EJB3 Mybatis 和 CMT 示例

发布于 2024-12-13 00:36:32 字数 472 浏览 2 评论 0原文

有人知道 EJB3 和 Mybatis 的一个示例,其中容器控制事务,我创建的代码的唯一部分是:

SQLMapConfig.xml


<transactionManager type="EXTERNAL">
    <property name="SetAutoCommitAllowed" value="false"/>
    <dataSource type="JNDI">
        <property name="DataSource" value="java:comp/env/jdbc/sisds"/>
    </dataSource>
</transactionManager> 

但我有很多问题,例如,

  1. 容器何时进行提交?
  2. 容器何时将会话释放到池中?

提前致谢

Somebody knows an example with EJB3 and Mybatis where the container controls the transaction, the only part of code I founded was:

SQLMapConfig.xml


<transactionManager type="EXTERNAL">
    <property name="SetAutoCommitAllowed" value="false"/>
    <dataSource type="JNDI">
        <property name="DataSource" value="java:comp/env/jdbc/sisds"/>
    </dataSource>
</transactionManager> 

But I have many questions, for example,

  1. When the container make the commit?
  2. When the container release the session to the pool?

Thanks in Advance

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

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

发布评论

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

评论(1

送你一个梦 2024-12-20 00:36:32

容器根据 EJB 的配置方式提交事务。如果您使用 Bean 管理的事务,那么您必须自己管理 UserTransaction

不管怎样,你必须自己管理MyBatis SqlSession。将 tx 类型设置为 EXTERNAL(在 Mybatis 3 中为 MANAGED),仅仅意味着 MyBatis 永远不会在数据库连接上调用提交 - 它依赖于容器来提交。

The container commits the transaction based on how your EJBs are configured. If you are using bean managed transactions, then you have to manage the UserTransaction yourself.

Regardless, you have to manage the MyBatis SqlSession yourself. Setting the tx type to EXTERNAL (MANAGED in Mybatis 3), simply means that MyBatis never calls commit on the DB connection - it relies on the container to commit.

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