码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis源码阅读(三)

时间:2018-08-28 01:00:44      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:proxy   new   oca   没有   添加   span   factor   load   inter   

SqlSesion怎么获取一个Mapper?

一个Mapper接口没有一个实现类怎么能够实例化?

 

public <T> T getMapper(Class<T> type) {
    // 通过 configuration 的getMapper方法获取Mapper对象
    return configuration.<T>getMapper(type, this);
  }

  public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
    // 通过MapperRegistry对象获取 Mapper的对象
    return mapperRegistry.getMapper(type, sqlSession);
  }

  public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
    // 通过注册的 mapperProxy 获取mapperProxyFactory 这里的knownMappers 在解析 mapper 的时候添加进入的
    final MapperProxyFactory<T> mapperProxyFactory = (MapperProxyFactory<T>) knownMappers.get(type);
    if (mapperProxyFactory == null)
      throw new BindingException("Type " + type + " is not known to the MapperRegistry.");
    try {
      // 通过mapperProxyFactory 实例化一个对象
      return mapperProxyFactory.newInstance(sqlSession);
    } catch (Exception e) {
      throw new BindingException("Error getting mapper instance. Cause: " + e, e);
    }
  }

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

  protected T newInstance(MapperProxy<T> mapperProxy) {
    // 动态代理的对像
    return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
  }

答案:动态代理

mybatis源码阅读(三)

标签:proxy   new   oca   没有   添加   span   factor   load   inter   

原文地址:https://www.cnblogs.com/jas0/p/9545504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!