Mybatis
Mybatis通过Mapper接口就能操作数据库的主要实现思想是:使用动态代理生成实现类,然后配合xml的映射文件中的SQL语句来实现对数据库的访问。

Mybatis编程模型

Mybatis是在iBatis上演变而来ORM框架,所以Mybatis最终会将代码转换成iBatis编程模型,而 Mybatis 代理阶段主要是将面向接口编程模型,通过动态代理转换成ibatis编程模型。

不直接使用iBatis编程模型的原因是为了解耦,从下面的两种示例可以看出,iBatis编程模型和配置文件耦合很严重。

面向接口编程模型

  1. @Test
  2. // 面向接口编程模型
  3. public void quickStart() throws Exception {
  4. // 2.获取sqlSession
  5. try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
  6. initH2dbMybatis(sqlSession);
  7. // 3.获取对应mapper
  8. PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
  9. JdkProxySourceClassUtil.writeClassToDisk(mapper.getClass().getSimpleName(), mapper.getClass());
  10. // 4.执行查询语句并返回结果
  11. Person person = mapper.selectByPrimaryKey(1L);
  12. System.out.println(person.toString());
  13. }
  14. }

ibatis编程模型

  1. @Test
  2. // ibatis编程模型
  3. public void quickStartIBatis() throws Exception {
  4. // 2.获取sqlSession
  5. try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
  6. initH2dbMybatis(sqlSession);
  7. // ibatis编程模型(与配置文件耦合严重)
  8. Person person = sqlSession.selectOne("com.fcant.domain.mapper.PersonMapper.selectByPrimaryKey", 1L);
  9. System.out.println(person.toString());
  10. }
  11. }

代理模块核心类

  • MapperRegistry:Mapper接口动态代理工厂(MapperProxyFactory)的注册中心
  • MapperProxyFactory:Mapper接口对应的动态代理工厂类。Mapper接口和MapperProxyFactory工厂类是一一对应关系
  • MapperProxy:Mapper接口的增强器,它实现了InvocationHandler接口,通过该增强的invoke方法实现了对数据库的访问
  • MapperMethod:对insert, update, delete, select, flush节点方法的包装类,它通过sqlSession来完成了对数据库的操作

Mybatis通过Mapper接口操作数据库的原理分析 - 图1

代理初始化

加载Mapper接口到内存

在Mybatis 源码可以发现当配置文件解析完成的最后一步是调用org.apache.ibatis.builder.xml.XMLMapperBuilder#bindMapperForNamespace方法。该方法的主要作用是:根据 namespace 属性将Mapper接口的动态代理工厂(MapperProxyFactory)注册到 MapperRegistry 中。源码如下:

  1. private void bindMapperForNamespace() {
  2. // 获取namespace属性(对应Mapper接口的全类名)
  3. String namespace = builderAssistant.getCurrentNamespace();
  4. if (namespace != null) {
  5. Class<?> boundType = null;
  6. try {
  7. boundType = Resources.classForName(namespace);
  8. } catch (ClassNotFoundException e) {
  9. //ignore, bound type is not required
  10. }
  11. if (boundType != null) {
  12. // 防止重复加载
  13. if (!configuration.hasMapper(boundType)) {
  14. // Spring may not know the real resource name so we set a flag
  15. // to prevent loading again this resource from the mapper interface
  16. // look at MapperAnnotationBuilder#loadXmlResource
  17. configuration.addLoadedResource("namespace:" + namespace);
  18. // 将Mapper接口的动态代理工厂注册到 MapperRegistry 中
  19. configuration.addMapper(boundType);
  20. }
  21. }
  22. }
  23. }
  1. 读取namespace属性,获取Mapper接口的全类名
  2. 根据全类名将Mapper接口加载到内存
  3. 判断是否重复加载Mapper接口
  4. 调用Mybatis 配置类(configuration)的addMapper方法,完成后续步骤

    注册代理工厂类

    org.apache.ibatis.session.Configuration#addMapper该方法直接回去调用org.apache.ibatis.binding.MapperRegistry#addMapper方法完成注册。

    1. public <T> void addMapper(Class<T> type) {
    2. // 必须是接口
    3. if (type.isInterface()) {
    4. if (hasMapper(type)) {
    5. // 防止重复注册
    6. throw new BindingException("Type " + type + " is already known to the MapperRegistry.");
    7. }
    8. boolean loadCompleted = false;
    9. try {
    10. // 根据接口类,创建MapperProxyFactory代理工厂类
    11. knownMappers.put(type, new MapperProxyFactory<>(type));
    12. // It's important that the type is added before the parser is run
    13. // otherwise the binding may automatically be attempted by the
    14. // mapper parser. If the type is already known, it won't try.
    15. MapperAnnotationBuilder parser = new MapperAnnotationBuilder(config, type);
    16. parser.parse();
    17. loadCompleted = true;
    18. } finally {
    19. // 如果加载出现异常需要移除对应Mapper
    20. if (!loadCompleted) {
    21. knownMappers.remove(type);
    22. }
    23. }
    24. }
    25. }
  5. 判断加载类型是否是接口

  6. 重复注册校验,如果校验不通抛出BindingException异常
  7. 根据接口类,创建MapperProxyFactory代理工厂类
  8. 如果加载出现异常需要移除对应Mapper

    获取代理对象

    在Mybatis 源码中有如下代码,通过 sqlSession获取Mapper的代理对象:

    1. PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);

    getMapper 获取代理对象

    sqlSession.getMapper(PersonMapper.class)最终调用的是org.apache.ibatis.binding.MapperRegistry#getMapper方法,最后返回的是PersonMapper接口的代理对象,源码如下:

    1. public <T> T getMapper(Class<T> type, SqlSession sqlSession) {
    2. // 根据类型获取对应的代理工厂
    3. final MapperProxyFactory<T> mapperProxyFactory = (MapperProxyFactory<T>) knownMappers.get(type);
    4. if (mapperProxyFactory == null) {
    5. throw new BindingException("Type " + type + " is not known to the MapperRegistry.");
    6. }
    7. try {
    8. // 根据工厂类新建一个代理对象,并返回
    9. return mapperProxyFactory.newInstance(sqlSession);
    10. } catch (Exception e) {
    11. throw new BindingException("Error getting mapper instance. Cause: " + e, e);
    12. }
    13. }
  9. 根据类型获取对应的代理工厂

  10. 根据工厂类新建一个代理对象,并返回

    newInstance 创建代理对象

    每一个Mapper接口对应一个MapperProxyFactory工厂类。MapperProxyFactory通过JDK动态代理创建代理对象,Mapper接口的代理对象是方法级别,所以每次访问数据库都需要新创建代理对象。源码如下:

    1. protected T newInstance(MapperProxy<T> mapperProxy) {
    2. // 使用JDK动态代理生成代理实例
    3. return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[]{mapperInterface}, mapperProxy);
    4. }
    5. public T newInstance(SqlSession sqlSession) {
    6. // Mapper的增强器
    7. final MapperProxy<T> mapperProxy = new MapperProxy<>(sqlSession, mapperInterface, methodCache);
    8. return newInstance(mapperProxy);
    9. }
  11. 先获取Mapper对应增强器(MapperProxy)

  12. 根据增强器使用JDK动态代理产生代理对象

    代理类的反编译结果

    1. import com.sun.proxy..Proxy8;
    2. import com.fcant.domain.model.Person;
    3. import java.lang.reflect.InvocationHandler;
    4. import java.lang.reflect.Method;
    5. import java.lang.reflect.Proxy;
    6. import java.lang.reflect.UndeclaredThrowableException;
    7. public final class $Proxy8 extends Proxy implements Proxy8 {
    8. private static Method m3;
    9. ...
    10. public $Proxy8(InvocationHandler var1) throws {
    11. super(var1);
    12. }
    13. ...
    14. public final Person selectByPrimaryKey(Long var1) throws {
    15. try {
    16. return (Person)super.h.invoke(this, m3, new Object[]{var1});
    17. } catch (RuntimeException | Error var3) {
    18. throw var3;
    19. } catch (Throwable var4) {
    20. throw new UndeclaredThrowableException(var4);
    21. }
    22. }
    23. static {
    24. try {
    25. m3 = Class.forName("com.sun.proxy.$Proxy8").getMethod("selectByPrimaryKey", Class.forName("java.lang.Long"));
    26. } catch (NoSuchMethodException var2) {
    27. throw new NoSuchMethodError(var2.getMessage());
    28. } catch (ClassNotFoundException var3) {
    29. throw new NoClassDefFoundError(var3.getMessage());
    30. }
    31. }
    32. }

    从代理类的反编译结果来看,都是直接调用增强器的invoke方法,进而实现对数据库的访问。

    执行代理

    通过上诉反编译代理对象,可以发现所有对数据库的访问都是在增强器org.apache.ibatis.binding.MapperProxy#invoke中实现的。

    执行增强器 MapperProxy

    1. @Override
    2. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    3. try {
    4. // 如果是Object本身的方法不增强
    5. if (Object.class.equals(method.getDeclaringClass())) {
    6. return method.invoke(this, args);
    7. }
    8. // 判断是否是默认方法
    9. else if (method.isDefault()) {
    10. if (privateLookupInMethod == null) {
    11. return invokeDefaultMethodJava8(proxy, method, args);
    12. } else {
    13. return invokeDefaultMethodJava9(proxy, method, args);
    14. }
    15. }
    16. } catch (Throwable t) {
    17. throw ExceptionUtil.unwrapThrowable(t);
    18. }
    19. // 从缓存中获取MapperMethod对象
    20. final MapperMethod mapperMethod = cachedMapperMethod(method);
    21. // 执行MapperMethod
    22. return mapperMethod.execute(sqlSession, args);
    23. }
  13. 如果是Object本身的方法不增强

  14. 判断是否是默认方法
  15. 从缓存中获取MapperMethod对象
  16. 执行MapperMethod

    模型转换 MapperMethod

    MapperMethod封装了Mapper接口中对应方法的信息(MethodSignature),以及对应的sql语句的信息(SqlCommand);它是mapper接口与映射配置文件中sql语句的桥梁;MapperMethod对象不记录任何状态信息,所以它可以在多个代理对象之间共享;
  • SqlCommand :从configuration中获取方法的命名空间.方法名以及SQL语句的类型;
  • MethodSignature:封装mapper接口方法的相关信息(入参,返回类型);
  • ParamNameResolver:解析mapper接口方法中的入参;
    1. public Object execute(SqlSession sqlSession, Object[] args) {
    2. Object result;
    3. // 根据SQL类型,调用不同方法。
    4. // 这里可以看出,操作数据库都是通过 sqlSession 来实现的
    5. switch (command.getType()) {
    6. case INSERT: {
    7. Object param = method.convertArgsToSqlCommandParam(args);
    8. result = rowCountResult(sqlSession.insert(command.getName(), param));
    9. break;
    10. }
    11. case UPDATE: {
    12. Object param = method.convertArgsToSqlCommandParam(args);
    13. result = rowCountResult(sqlSession.update(command.getName(), param));
    14. break;
    15. }
    16. case DELETE: {
    17. Object param = method.convertArgsToSqlCommandParam(args);
    18. result = rowCountResult(sqlSession.delete(command.getName(), param));
    19. break;
    20. }
    21. case SELECT:
    22. // 根据方法返回值类型来确认调用sqlSession的哪个方法
    23. // 无返回值或者有结果处理器
    24. if (method.returnsVoid() && method.hasResultHandler()) {
    25. executeWithResultHandler(sqlSession, args);
    26. result = null;
    27. }
    28. // 返回值是否为集合类型或数组
    29. else if (method.returnsMany()) {
    30. result = executeForMany(sqlSession, args);
    31. }
    32. // 返回值是否为Map
    33. else if (method.returnsMap()) {
    34. result = executeForMap(sqlSession, args);
    35. }
    36. // 返回值是否为游标类型
    37. else if (method.returnsCursor()) {
    38. result = executeForCursor(sqlSession, args);
    39. }
    40. // 查询单条记录
    41. else {
    42. // 参数解析
    43. Object param = method.convertArgsToSqlCommandParam(args);
    44. result = sqlSession.selectOne(command.getName(), param);
    45. if (method.returnsOptional()
    46. && (result == null || !method.getReturnType().equals(result.getClass()))) {
    47. result = Optional.ofNullable(result);
    48. }
    49. }
    50. break;
    51. case FLUSH:
    52. result = sqlSession.flushStatements();
    53. break;
    54. default:
    55. throw new BindingException("Unknown execution method for: " + command.getName());
    56. }
    57. if (result == null && method.getReturnType().isPrimitive() && !method.returnsVoid()) {
    58. throw new BindingException("Mapper method '" + command.getName()
    59. + " attempted to return null from a method with a primitive return type (" + method.getReturnType() + ").");
    60. }
    61. return result;
    62. }
    63. private <E> Object executeForMany(SqlSession sqlSession, Object[] args) {
    64. List<E> result;
    65. // 将方法参数转换成SqlCommand参数
    66. Object param = method.convertArgsToSqlCommandParam(args);
    67. if (method.hasRowBounds()) {
    68. // 获取分页参数
    69. RowBounds rowBounds = method.extractRowBounds(args);
    70. result = sqlSession.selectList(command.getName(), param, rowBounds);
    71. } else {
    72. result = sqlSession.selectList(command.getName(), param);
    73. }
    74. // issue #510 Collections & arrays support
    75. if (!method.getReturnType().isAssignableFrom(result.getClass())) {
    76. if (method.getReturnType().isArray()) {
    77. return convertToArray(result);
    78. } else {
    79. return convertToDeclaredCollection(sqlSession.getConfiguration(), result);
    80. }
    81. }
    82. return result;
    83. }
    execute方法中完成了面向接口编程模型到iBatis编程模型的转换,转换过程如下:
  1. 通过MapperMethod.SqlCommand. type+MapperMethod.MethodSignature.returnType来确定需要调用SqlSession中的那个方法
  2. 通过MapperMethod.SqlCommand. name来找到需要执行方法的全类名
  3. 通过MapperMethod.MethodSignature.paramNameResolver来转换需要传递的参数

    SqlSession

    在Mybatis中SqlSession相当于一个门面,所有对数据库的操作都需要通过SqlSession接口,SqlSession中定义了所有对数据库的操作方法,如数据库读写命令、获取映射器、管理事务等,也是Mybatis中为数不多的有注释的类。
    Mybatis通过Mapper接口操作数据库的原理分析 - 图2

    流程图

    Mybatis通过Mapper接口操作数据库的原理分析 - 图3

    总结

    通过上面的源码解析,可以发现Mybatis面向接口编程是通过JDK动态代理模式来实现的。主要执行流程是:

  4. 在映射文件初始化完成后,将对应的Mapper接口的代理工厂类MapperProxyFactory注册到MapperRegistry

  5. 每次操作数据库时,sqlSession通过MapperProxyFactory获取Mapper接口的代理类
  6. 代理类通过增强器MapperProxy调用XML映射文件中SQL节点的封装类MapperMethod
  7. 通过MapperMethod将Mybatis 面向接口的编程模型转换成iBatis编程模型(SqlSession模型)
  8. 通过SqlSession完成对数据库的操作