使用mybatis-plus创建db mapper,只需要写一个接口继承BaseMapper,比如示例中的EntityMapper。
@Mapper
@Repository
public interface EntityMapper extends BaseMapper<Entity> {}
本文将解释在底层一次select调用是怎么完成。 主要包括以下几个部分:
- 核心类及包
- 容器初始化
- Mapper bean初始化
- 代理方法调用
核心类及所在包
主要涉及以下包和类。
<artifactId>mybatis-plus-annotation</artifactId>
MybatisSqlSessionFactoryBean
ServiceImpl
<artifactId>mybatis-spring</artifactId>
MapperFactoryBean
<artifactId>mybatis-plus-core</artifactId>
MybatisConfiguration
MybatisMapperRegistry
MybatisMapperProxyFactory
MybatisMapperProxy
MybatisMapperMethod
容器初始化
spring 递归初始化以下类,包括:
MybatisPlusAutoConfiguration
MybatisSqlSessionFactoryBean
MybatisConfiguration
MybatisMapperRegistry
这里不一一说明各类的初始化过程,只拿出MybatisMapperRegistry。该类用来实际存储mapper的实现
public class MybatisMapperRegistry extends MapperRegistry {
private final Configuration config;
private final Map<Class<?>, MybatisMapperProxyFactory<?>> knownMappers = new HashMap();
}
mapper bean的初始化
1、spring调用 MapperFactoryBean 初始化声明的mapper接口的bean。
public class MapperFactoryBean<T> extends SqlSessionDaoSupport implements FactoryBean<T> {
public T getObject() throws Exception {
return this.getSqlSession().getMapper(this.mapperInterface);
}
}
该方法会递归调用上文已经初始化的 MybatisConfiguration、 MybatisMapperRegistry,最终使用 MybatisMapperProxyFactory 生成代理类。
- 生成代理类,并放入 MybatisMapperRegistry 容器中
public class MybatisMapperProxyFactory<T> {
protected T newInstance(MybatisMapperProxy<T> mapperProxy) {
return Proxy.newProxyInstance(this.mapperInterface.getClassLoader(), new Class[]{this.mapperInterface}, mapperProxy);
}
}
select调用
- 获取注入的代理类bean
- 调用select方法
实际调用代理方法
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable{} //省略 return new MybatisMapperProxy.PlainMethodInvoker(new MybatisMapperMethod(this.mapperInterface, method, this.sqlSession.getConfiguration()));
这里的MybatisMapperMethod,包含实际的select方法
到此流程基本执行完成。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。