mybatis源码阅读体会

Executor  接口。 提供执行sql的接口, 像查询,
update,提交,回滚事物, 创建mybatis缓存key , 获取当前事物, 包装executor等方法。
从此接口可以看出
MappedStatement是一个对mybatis很重要的类, 
RowBounds类很简单,只有offset偏移量和limit限制数据量。

ResultHandler 结果处理器。
BoundSql 绑定的sql

Executor 有两个基础子类  

BaseExecutor 和
CachingExecutor ; 

BaseExecutor 构造函数十分简单, 一个Configuration对象,是配置文件的抽象。
Transaction 一个事物对象
  protected BaseExecutor(Configuration configuration, Transaction transaction) {
    this.transaction = transaction;
    this.deferredLoads = new ConcurrentLinkedQueue<DeferredLoad>();
    this.localCache = new PerpetualCache("LocalCache");
    this.localOutputParameterCache = new PerpetualCache("LocalOutputParameterCache");
    this.closed = false;
    this.configuration = configuration;
    this.wrapper = this;
  }
这个类的update方法 先执行这句, 应该是获取xml的sql
    ErrorContext.instance().resource(ms.getResource()).activity("executing an update").object(ms.getId());

SimpleExecutor 继承自BaseExecutor , 

doUpdate , doQuery等都是采用StatementHandler进行处理.
 
BatchExecutor
    感觉没啥特殊的,需要理解下mybatis的statementHandler
 
ReuseExecutor   

 

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值