1. Executor执行器

1.1 Executor 体系

Executor 执行器接口,它有两个实现类,分别是 BaseExecutor 和 CachingExecutor。

  • BaseExecutor:是一个抽象类,这种通过抽象的实现接口的方式是适配器设计模式之接口适配的体现,是 Executor 的默认实现,实现了大部分 Executor 接口定义的功能,降低了接口实现的难度。BaseExecutor 的子类有三个,分别是SimpleExecutor、ReuseExecutor 和 BatchExecutor。
    • SimpleExecutor:简单执行器,是 MyBatis 中默认使用的执行器,每执行一次 update 或 select,就开启一个 Statement 对象,用完就直接关闭 Statement 对象(可以是 Statement 或者是 PreparedStatment 对象)。
    • ReuseExecutor :可重用执行器,这里的重用指的是重复使用 Statement,它会在内部使用一个 Map 把创建的 Statement 都缓存起来,每次执行 SQL 命令的时候,都会去判断是否存在基于该 SQL 的 Statement 对象,如果存在 Statement 对象并且对应的 connection 还没有关闭的情况下就继续使用之前的 Statement 对象,并将其缓存起来。每个SqlSession 都有一个新的 Executor 对象,所以我们缓存在 ReuseExecutor 上的 Statement 作用域是同一个 SqlSession。
    • BatchExecutor:批处理执行器,用于将多个 SQL 一次性输出到数据库。
  • CachingExecutor:缓存执行器,先从缓存中查询结果,如果存在,就返回;如果不存在,再委托给 Executor delegate 去数据库中取,delegate 可以是上面任何一个执行器,默认是 simple executor。

image.png

1.2 Executor 功能

Executor 功能:每一个 sql 语句的执行都会先到 Executor 执行器中在调用相应 StatementHandler 执行 jdbc 操作。

源码如下 SimpleExecutor 中的代码片段:

  1. public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {
  2. Statement stmt = null;
  3. try {
  4. Configuration configuration = ms.getConfiguration();
  5.     //调用statmentHandler,通过控制器调用jdbc相关操作
  6. StatementHandler handler = configuration.newStatementHandler(wrapper, ms, parameter, rowBounds, resultHandler, boundSql);
  7. stmt = prepareStatement(handler, ms.getStatementLog());
  8. return handler.query(stmt, resultHandler);
  9. } finally {
  10. closeStatement(stmt);
  11. }
  12. }

如何指定使用哪一种Executor?
在 Mybatis 配置⽂件中,可以指定默认的 ExecutorType 执行器类型,也可以手动给
DefaultSqlSessionFactory 的创建 SqlSession 的方法传递 ExecutorType 类型参数。

  1. <setting name="defaultExecutorType" value="REUSE" />

1.3 Executor创建过程分析

1、创建 SqlSession 时,可以指定 Executor 类型,由 mybatis 中 ExecutorType 枚举类来指定,默认不传参就是 SIMPLE 类型。

  1. sqlSession = sqlSessionFactory.openSession(ExecutorType.BATCH);

2、在 DefaultSqlSessionFactory 中创建执行器。

  1. public SqlSession openSession(ExecutorType execType) {
  2. return this.openSessionFromDataSource(execType, (TransactionIsolationLevel)null, false);
  3. }
  4. private SqlSession openSessionFromDataSource(ExecutorType execType, TransactionIsolationLevel level, boolean autoCommit) {
  5. Transaction tx = null; // 定义事务
  6. DefaultSqlSession var8;
  7. try {
  8. // mybatis配置文件中所有信息都封装到Configuration中,获取环境id、datasource等信息
  9. Environment environment = this.configuration.getEnvironment();
  10. // 获取事物工厂
  11. TransactionFactory transactionFactory = this.getTransactionFactoryFromEnvironment(environment);
  12. // 根据工厂创建事物对象,直接 return new JdbcTransaction(ds, level, autoCommit);
  13. tx = transactionFactory.newTransaction(environment.getDataSource(), level, autoCommit);
  14. // 创建执行器
  15. Executor executor = this.configuration.newExecutor(tx, execType);
  16. //默认executor是CachingExecutor
  17. var8 = new DefaultSqlSession(this.configuration, executor, autoCommit);
  18. } catch (Exception var12) {
  19. this.closeTransaction(tx);
  20. throw ExceptionFactory.wrapException("Error opening session. Cause: " + var12, var12);
  21. } finally {
  22. ErrorContext.instance().reset();
  23. }
  24. return var8;
  25. }

3、下面看执行器创建具体流程:

  1. public Executor newExecutor(Transaction transaction, ExecutorType executorType) {
  2.     // 默认创建简单执行器
  3.    executorType = executorType == null ? defaultExecutorType : executorType;
  4.    executorType = executorType == null ? ExecutorType.SIMPLE : executorType;
  5.    Executor executor;
  6. if (ExecutorType.BATCH == executorType) {
  7. executor = new BatchExecutor(this, transaction);
  8. } else if (ExecutorType.REUSE == executorType) {
  9. executor = new ReuseExecutor(this, transaction);
  10. } else {
  11. executor = new SimpleExecutor(this, transaction);
  12. }
  13.    //cacheEnabled默认ture开启二级缓存
  14. if (cacheEnabled) {
  15.     //把简单执行器传递给CachingExecutor中的delegate属性,
  16. executor = new CachingExecutor(executor);
  17. }
  18.    //mybatis责任链模式
  19. executor = (Executor) interceptorChain.pluginAll(executor);
  20. return executor;
  21. }
  22. public CachingExecutor(Executor delegate) {
  23. this.delegate = delegate;
  24. delegate.setExecutorWrapper(this);
  25. }

4、执行流程图如下:
image.png


2. 批处理

mapper 文件

  1. <insert id="insertTeacherBatch" useGeneratedKeys="true" keyProperty="id" parameterType="teacher">
  2. insert into mybatis_test.teacher(name) values (#{name})
  3. </insert>

测试代码

  1. @Test
  2. public void insertTeacherBatchTest() throws IOException {
  3. try {
  4. String resource = "mybatis-config.xml";
  5. is = Resources.getResourceAsStream(resource);
  6. sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
  7. sqlSession = sqlSessionFactory.openSession(ExecutorType.BATCH);
  8. TeacherDao mapper = sqlSession.getMapper(TeacherDao.class);
  9. for (int i = 1; i < 1000; i++) {
  10. mapper.insertTeacherBatch(new Teacher("weishao" + i));
  11. }
  12. sqlSession.commit();
  13. } catch (IOException e) {
  14. e.printStackTrace();
  15. } finally {
  16. sqlSession.close();
  17. is.close();
  18. }
  19. }