Mybatis SqlSession运行过程源码分析

简述

  • 在我们使用Mybatis进行增删改查时,SqlSession是核心,它相当于一个数据库连接对象,在一个SqlSession中可以执行多条SQL语句
  • SqlSession本身是一个接口,提供了很多种操作方法,如insert,select等等,我们可以直接调用,但是这种方式是不推荐的,可读性,可维护性都不是很高,推荐使用Mapper接口映射的方式去进行增删改查,了解一下这种方式的运行过程也是有必要的
  • 在了解SqlSession运行过程前,我们需要具备动态代理以及JDK动态代理的相关知识

开始分析

我们在使用Mapper时,基本流程就是在配置文件中指定好Mapper接口文件和XML文件的路径,然后使用如下代码获取代理对象

UserMapper userMapper = sqlSession.getMapper(UserMapper.class)

然后调用接口中的方法即可调执行相关的SQL语句,这一过程是具体怎么执行的呢?下面开始分析

【getMapper方法】
  • SqlSession只是一个接口,Mybatis中使用的是它的默认实现类DefaultSqlSession
  @Override
  public <T> T getMapper(Class<T> type) {
    return configuration.<T>getMapper(type, this);
  }
  • 调用Configuration的getMapper方法
 public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
    return mapperRegistry.getMapper(type, sqlSession);
  }
  • 继续调用MapperRegistry的getMapper方法
  @SuppressWarnings("unchecked")
  public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
    final MapperProxyFactory<T> mapperProxyFactory = (MapperProxyFactory<T>) knownMappers.get(type);
    if (mapperProxyFactory == null) {
      throw new BindingException("Type " + type + " is not known to the MapperRegistry.");
    }
    try {
      return mapperProxyFactory.newInstance(sqlSession);
    } catch (Exception e) {
      throw new BindingException("Error getting mapper instance. Cause: " + e, e);
    }
  }

这里需要介绍一下,我们在写XML配置文件时注册了Mapper,被注册的Mapper就被维护在MapperRegistry的一个HashMap中

private final Map<Class<?>, MapperProxyFactory<?>> knownMappers = new HashMap<Class<?>, MapperProxyFactory<?>>();

map的key是Class类,value是对应的一个代理工厂MapperProxyFactory,用来生产对应的代理类,如果key没有对应的value,会抛出异常,告诉我们并没有去注册这个Mapper,这时候就需要去检查配置文件了

  • 调用MapperProxyFactory的newInstance()方法去生产代理对象
  public T newInstance(SqlSession sqlSession) {
    //生产代理,该对象必须实现InvocationHandler接口且实现invoke方法
    final MapperProxy<T> mapperProxy = new MapperProxy<T>(sqlSession, mapperInterface, methodCache);
    return newInstance(mapperProxy);
  }

  @SuppressWarnings("unchecked")
  protected T newInstance(MapperProxy<T> mapperProxy) {
    return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
  }

这里就涉及到了JDK动态代理

  1. 首先new一个Mapper代理,由JDK动态代理可知,代理对象必须实现InvocationHandler接口且实现invoke方法
  2. 调用Proxy.newProxyInstance方法产生代理对象

为什么要动态代理呢?因为我们要执行SQL!在接口方法中,我们是不需要自己写查询方法的,而SQL方法的执行就依赖于动态代理!

  • 动态代理的主要逻辑就是invoke方法中的内容,我们来看MapperProxy的invoke方法
  @Override
  public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    if (Object.class.equals(method.getDeclaringClass())) {
      try {
        return method.invoke(this, args);
      } catch (Throwable t) {
        throw ExceptionUtil.unwrapThrowable(t);
      }
    }
    final MapperMethod mapperMethod = cachedMapperMethod(method);
    return mapperMethod.execute(sqlSession, args);
  }

简单描述一些流程

  1. 我们知道Java中,所有类的父类都是Object,因此所有类都会继承一些Object的方法,如toString()之类的,所以这里我们要进行判断,如果我们的代理对象调用的是从Object那里继承来的方法,我们就不去执行动态代理逻辑,而是直接执行该方法
  2. 如果执行的方法归本类所有,则通过cachedMapperMethod产生MapperMethod来执行execute代理逻辑,即执行SQL
【这里涉及到了一个很重要的问题!!!】

我们知道,XML映射文件其实就是Mapper接口的实现类,接口方法的全路径和XML映射文件中namesapce + SQL块的id一一对应,Mybatis是如何找到并维护这种对应关系的呢?就是通过MapperProxy中的一个Map

private final Map<Method, MapperMethod> methodCache;

这个Map的key为传入的方法类型,value为MapperMethod,也是执行SQL的关键,其实这个methodCache主要是为了完成缓存的任务,因为我们执行方法时,需要从Configuration中去解析对应的XML文件中的SQL块,多次解析会造成资源的浪费,代码如下

  private MapperMethod cachedMapperMethod(Method method) {
    MapperMethod mapperMethod = methodCache.get(method);
    if (mapperMethod == null) {
      mapperMethod = new MapperMethod(mapperInterface, method, sqlSession.getConfiguration());
      methodCache.put(method, mapperMethod);
    }
    return mapperMethod;
  }

若key对应的value存在,则从map直接拿到并返回,若不存在,则通过

mapperMethod = new MapperMethod(mapperInterface, method, sqlSession.getConfiguration());

解析后,放入map,并返回,下面看是如何解析的

  private final SqlCommand command;
  private final MethodSignature method;

  public MapperMethod(Class<?> mapperInterface, Method method, Configuration config) {
    this.command = new SqlCommand(config, mapperInterface, method);
    this.method = new MethodSignature(config, mapperInterface, method);
  }

在MapperMethod中有两个成员变量command和method,command主要完成了根据method方法解析出对应的SQL块,而method负责一些如传参的转化,返回类型的判定等,这里我们主要看command解析(注释中)

    public SqlCommand(Configuration configuration, Class<?> mapperInterface, Method method) {
      //1、拿到接口全路径.方法名称的字符串,这不就是XML映射文件中的namespace.id吗?
      String statementName = mapperInterface.getName() + "." + method.getName();
      MappedStatement ms = null;
      if (configuration.hasStatement(statementName)) {
        //2、判断Configuration中是否含有该配置,有则拿到MappedStatement
        ms = configuration.getMappedStatement(statementName);
      } else if (!mapperInterface.equals(method.getDeclaringClass())) { // issue #35
        //3、如果不存在,看看它的父类全路径.方法名称是否存在
        String parentStatementName = method.getDeclaringClass().getName() + "." + method.getName();
        if (configuration.hasStatement(parentStatementName)) {
          ms = configuration.getMappedStatement(parentStatementName);
        }
      }
      if (ms == null) {
        //如果MappedStatement为空
        if(method.getAnnotation(Flush.class) != null){
          //先瞅瞅执行的这个方法有木有@Flush注解呢?有就执行下面操作
          name = null;
          type = SqlCommandType.FLUSH;
        } else {
          //没有。。。那就抛异常呗,赶紧去检查是不是XML和接口对应写错了?
          throw new BindingException("Invalid bound statement (not found): " + statementName);
        }
      } else {
        //不等于空就执行下面操作
        name = ms.getId();
        type = ms.getSqlCommandType();
        if (type == SqlCommandType.UNKNOWN) {
          throw new BindingException("Unknown execution method for: " + name);
        }
      }
    }

至此根据method解析SQL块完毕,这一系列初始化过程在new这个MapperMethod对象后便完成了,然后便调用execute方法进行执行代理方法,即SQL执行!

  public Object execute(SqlSession sqlSession, Object[] args) {
    Object result;
    if (SqlCommandType.INSERT == command.getType()) {
      Object param = method.convertArgsToSqlCommandParam(args);
      result = rowCountResult(sqlSession.insert(command.getName(), param));
    } else if (SqlCommandType.UPDATE == command.getType()) {
      Object param = method.convertArgsToSqlCommandParam(args);
      result = rowCountResult(sqlSession.update(command.getName(), param));
    } else if (SqlCommandType.DELETE == command.getType()) {
      Object param = method.convertArgsToSqlCommandParam(args);
      result = rowCountResult(sqlSession.delete(command.getName(), param));
    } else if (SqlCommandType.SELECT == command.getType()) {
      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);
      }
    } else if (SqlCommandType.FLUSH == command.getType()) {
        result = sqlSession.flushStatements();
    } else {
      throw new BindingException("Unknown execution method for: " + command.getName());
    }
    if (result == null && method.getReturnType().isPrimitive() && !method.returnsVoid()) {
      throw new BindingException("Mapper method '" + command.ge
tName() 
          + " attempted to return null from a method with a primitive return type (" + method.getReturnType() + ").");
    }
    return result;
  }

这一段代码就不去一一解析了,主要就是通过初始化好的command,拿到SQL块的id以及类型,method拿到SQL参数以及返回类型,通过调用sqlSession的原生方法如select、selectOne、insert、update等等去执行SQL

总结

哇,终于写完了,这次的源码分析真的好爽,一步步了解了Mybatis的SqlSession是如何getMapper并调用方法的,如果你能看完,真的十分感谢!
(这里最后只到了调用SqlSession原生的增删改查方法,而并没有去深入这些方法是如何实现的,大家有兴趣可以自行去查看源码,有机会下次再去分析!)

如有错误一定要指出哦,万分感谢!
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容