interface代理在mybatis中的应用

0前言

mybatis有一个很好的特性.在写mapper的时候,我们只需要在代码中写出mapper的interface,具体的实现由mybatis根据xml帮助我们实现.今天我们可以详细了解这其中的奥秘.

总的来说,使用的基本原理就是java的动态代理.当Mapper 对象其实是一个java代理.代理的处理类型为MapperProxy<T>
其中T就是我们的接口类型.怎么样有模板函数出现了

当一个查询出现的时候由MapperProxy进行数据库查询.下面我可以分别来看看实现细节.

1代理的构建.

下面的代码是获取mapper的代码

studentMapper = session.getMapper(StudentMapper.class);

session的类型为DefaultSqlSession
最终处理地方为org.apache.ibatis.binding.MapperRegistry#getMapper

mapperProxyFactory存储了Mapper的Interface(我们自己写的Interface).

1.1处理

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.然后使用动态代理创建了代理.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值