EJB3 Mybatis 和 CMT 示例
有人知道 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>
但我有很多问题,例如,
- 容器何时进行提交?
- 容器何时将会话释放到池中?
提前致谢
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,
- When the container make the commit?
- When the container release the session to the pool?
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
容器根据 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.