欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[MyBatis源码分析系列] Transaction

程序员文章站 2022-03-02 15:20:49
...

Transaction

简介

包装数据库的连接java.sql.Connection
处理连接的生命周期:创建,预编译,提交/回滚和关闭。

源码

public interface Transaction {
	Connection getConnection() throws SQLException;

	void commit() throws SQLException;
	
	void rollback() throws SQLException;

	void close() throws SQLException;

	Integer getTimeout() throws SQLException;
}
相关标签: MyBatis