Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to parse transaction management with Mybatis source code

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

How to use Mybatis source code to analyze transaction management, in view of this problem, this article introduces the corresponding analysis and solution in detail, hoping to help more partners who want to solve this problem to find a more simple and easy way.

Mybatis transaction management

We can configure the implementation of the transaction manager in mybatis-config.xml

When the value is JDBC, the transaction management implementation class is JdbcTransaction, and the underlying layer uses the Connection of the database to manage transactions

When the value is MANAGED, the transaction management implementation class is ManagedTransactionFactory, but it is an empty implementation for transaction management, handing transaction management to an external container

JdbcTransaction

ManagedTransaction

Transaction management after integration with Spring

When mybatis and spring integrate to create TransactionFactory, if it is not set, it will be set to SpringManagedTransactionFactory

Org.mybatis.spring.SqlSessionFactoryBean#buildSqlSessionFactory

But when a transaction is actually executed, it is not usually executed by SpringManagedTransaction, because we usually leave the transaction to spring, and when we hand it over to spring, this.isConnectionTransactional=true, so commit and rollback are equivalent to empty implementation.

After the integration of mybatis and spring, transaction management is usually carried out by DataSourceTransactionManager in the spring framework.

On how to use Mybatis source code analysis of transaction management questions to share here, I hope the above content can be of some help to you, if you still have a lot of doubts have not been solved, you can follow the industry information channel to learn more related knowledge.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report