mybatis的解析和运行原理(三)

前言:

之前讲了SqlSessionFactory的构建过程,现在来继续分析一下SqlSession的运行过程,SqlSession是Mybatis最难理解的一个部分,SqlSession是一个接口,我们构建出了SqlSessionFactory就可以轻易地拿到SqlSession了.

SqlSession运行过程:

一.Mapper映射的动态代理

我们先来看看这一段代码:

public class MapperProxyFactory<T> {

  private final Class<T> mapperInterface;
  private final Map<Method, MapperMethod> methodCache = new ConcurrentHashMap<Method, MapperMethod>();

  public MapperProxyFactory(Class<T> mapperInterface) {
    this.mapperInterface = mapperInterface;
  }

  public Class<T> getMapperInterface() {
    return mapperInterface;
  }

  public Map<Method, MapperMethod> getMethodCache() {
    return methodCache;
  }
  
  //上面的我们都不需要我们只需要看下面的这一段
  
  @SuppressWarnings("unchecked")
  protected T newInstance(MapperProxy<T> mapperProxy) {
    return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
  }

  public T newInstance(SqlSession sqlSession) {
    final MapperProxy<T> mapperProxy = new MapperProxy<T>(sqlSession, mapperInterface, methodCache);
    return newInstance(mapperProxy);
  }

}

它对接口进行绑定,然后生成动态代理对象,代理的方法放到了MapperProxy中,那让我们接下来继续看看MapperProxy这个类把.

public class MapperProxy<T> implements InvocationHandler, Serializable {
  //上面代码全部省略
  @Override
  public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    try {
      if (Object.class.equals(method.getDeclaringClass())) {
        return method.invoke(this, args);
      } else if (isDefaultMethod(method)) {
        return invokeDefaultMethod(proxy, method, args);
      }
    } catch (Throwable t) {
      throw ExceptionUtil.unwrapThrowable(t);
    }
    final MapperMethod mapperMethod = cachedMapperMethod(method);
    return mapperMethod.execute(sqlSession, args);
  }
//下面代码全部省略
}

就这一段代码运行了invoke方法.一旦mapper是一个代理对象,纳闷他就会运行到invoke方法内很显然这里的Mapper是一个接口不是一个类上面的if和else if都没有进,他会执行下面的代码通过 cachedMapperMethod方法给MapperMethod对象进行初始化,最后执行execute这个方法,把sqlSession和args(当前参数)给传递进去.然后我们再来看看一段execute的源码

public Object execute(SqlSession sqlSession, Object[] args) {
    Object result;
    switch (command.getType()) {
      case INSERT: {
    	Object param = method.convertArgsToSqlCommandParam(args);
        result = rowCountResult(sqlSession.insert(command.getName(), param));
        break;
      }
      case UPDATE: {
        Object param = method.convertArgsToSqlCommandParam(args);
        result = rowCountResult(sqlSession.update(command.getName(), param));
        break;
      }
      case DELETE: {
        Object param = method.convertArgsToSqlCommandParam(args);
        result = rowCountResult(sqlSession.delete(command.getName(), param));
        break;
      }
      case SELECT:
        if (method.returnsVoid() && method.hasResultHandler()) {
          executeWithResultHandler(sqlSession, args);
          result = null;
        } else if (method.returnsMany()) {
          result = executeForMany(sqlSession, args);
        } else if (method.returnsMap()) {
          result = executeForMap(sqlSession, args);
        } else if (method.returnsCursor()) {
          result = executeForCursor(sqlSession, args);
        } else {
          Object param = method.convertArgsToSqlCommandParam(args);
          result = sqlSession.selectOne(command.getName(), param);
        }
        break;
      case FLUSH:
        result = sqlSession.flushStatements();
        break;
      default:
        throw new BindingException("Unknown execution method for: " + command.getName());
    }
    if (result == null && method.getReturnType().isPrimitive() && !method.returnsVoid()) {
      throw new BindingException("Mapper method '" + command.getName() 
          + " attempted to return null from a method with a primitive return type (" + method.getReturnType() + ").");
    }
    return result;
    //中间和前面的一些无用的我直接省略,只需要看我复制的这些就可以,如果还有兴趣继续了解的可以在去看看源码中的方法
     private <E> Object executeForMany(SqlSession sqlSession, Object[] args) {
    List<E> result;
    Object param = method.convertArgsToSqlCommandParam(args);
    if (method.hasRowBounds()) {
      RowBounds rowBounds = method.extractRowBounds(args);
      result = sqlSession.<E>selectList(command.getName(), param, rowBounds);
    } else {
      result = sqlSession.<E>selectList(command.getName(), param);
    }
    // issue #510 Collections & arrays support
    if (!method.getReturnType().isAssignableFrom(result.getClass())) {
      if (method.getReturnType().isArray()) {
        return convertToArray(result);
      } else {
        return convertToDeclaredCollection(sqlSession.getConfiguration(), result);
      }
    }
    return result;
  }
  }

也许上面的代码太长你并没有看,那么来让我来进行简单的解释一下这段代码,他根据命令模式,根据上下文进行跳转,根据我们当时写在映射文件前的那些insert之类的标签进行跳转,那么我们再看executeForMany这个方法,它的本质作用其实也就是简单的将我们写的sql语句给运行起来.这也就是为什么我们再映射文件里面写一段标签和sql语句却可以直接用Mapper接口运行sql的原因了.
映射器的XML文件的命名空间对应的便是这个接口的全路径,那么根据它全路径和方法名便能够绑定起来,然后使用动态代理就可以使这个接口跑起来,这也就是为什么我们使用Mybatis框架的时候可以直接使用接口进行编程的原因了.
PS一下:
为了防止可能还是有点疑惑我再来梳理,我们根据映射文件的全限定类名找到这个接口的位置,将这个接口给加载进MapperProxy这个类中,然后根据这个接口生成一个MapperMethod的类,最后便是执行sql语句了.如果还是有疑惑可以继续反复阅读我上面所写的源码.

二.小结

原来是打算将SqlSession下的四大对象的,但是看来上面一段源码分析已经写了不少,那么我将这四大对象分到下次再写,四大对象如何运行的流程比较重要,如果要学习如何编写Mybatis插件的话,还是需要仔细阅读. 希望和各位一起学习.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值