mybatis源码解析3_getMapper

以下内容都是根据尚硅谷2018年mybatis源码解析做的课程笔记,视频链接:
https://www.bilibili.com/video/BV1mW411M737?p=74&share_source=copy_web
另外特别感谢雷丰阳老师的讲解

拿到sqlSession,接下来就该getMapper了

SqlSession sqlSession=MybatisUtils.getSqlSession();
TypeDao dao=sqlSession.getMapper(TypeDao.class);

一路往下

    <T> T getMapper(Class<T> var1);
    public <T> T getMapper(Class<T> type) {
        return this.configuration.getMapper(type, this);
    }
    public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
        return this.mapperRegistry.getMapper(type, sqlSession);
    }
   public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
        MapperProxyFactory<T> mapperProxyFactory = (MapperProxyFactory)this.knownMappers.get(type);
        if (mapperProxyFactory == null) {
            throw new BindingException("Type " + type + " is not known to the MapperRegistry.");
        } else {
            try {
                return mapperProxyFactory.newInstance(sqlSession);
            } catch (Exception var5) {
                throw new BindingException("Error getting mapper instance. Cause: " + var5, var5);
            }
        }
    }

最终在this.mapperRegistry.getMapper方法真正实现了mapper
其中

return mapperProxyFactory.newInstance(sqlSession);

它new了一个Instance

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

这里面又new了一个mapper的代理对象
在这里插入图片描述

而这个类又实现了动态代理
在这里插入图片描述
最后他调用本类的newInstance,这里面又调用了java本类的代理对象

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

所以我们最终拿到的mapper是mapperProxy的代理对象
返回的mapper又包含了sqlSession,最终才能用于增删改查
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值