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();
    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   

 
  
 
 

你可能感兴趣的:(mybatis源码阅读体会)