环境:mybatis版本3.4.5 mysql数据库驱动版本:5.1.6
MyBatis源码:
一条查询单条结果(select * from t_user where id = ?
)SQL的执行方法链追踪流程
sqlSession.getMapper
得到的mapper就是动态代理对象,是MapperProxy
类型:
UserDao mapper = sqlSession.getMapper(UserDao.class);
User user = mapper.findById(2);
所以执行入口可以从org.apache.ibatis.binding.MapperProxy#invoke
开始跟踪,以下是层层深入,查看该执行流程的方法调用链,里面涉及到的设计模式有:动态代理、装饰者模式、责任链模式(XXXHandler类里面)、命令模式;
底层是调用了JDBC的执行代码,我们可以追踪到connection就是大家知道的mysql驱动包里面的com.mysql.jdbc.JDBC4Connection
类型,这也是数据库驱动使用装饰者模式实现的Connection接口的实例对象。
>org.apache.ibatis.binding.MapperProxy#invoke
>org.apache.ibatis.binding.MapperMethod#execute
>org.apache.ibatis.session.defaults.DefaultSqlSession#selectOne
>org.apache.ibatis.session.defaults.DefaultSqlSession#selectList
>org.apache.ibatis.executor.CachingExecutor#query
>org.apache.ibatis.executor.BaseExecutor#query
>org.apache.ibatis.executor.BaseExecutor#queryFromDatabase
>org.apache.ibatis.executor.SimpleExecutor#doQuery
>org.apache.ibatis.session.Configuration#newStatementHandler
>new org.apache.ibatis.executor.statement.RoutingStatementHandler包装了一个PreparedStatementHandler
>org.apache.ibatis.executor.statement.BaseStatementHandler#BaseStatementHandler
>org.apache.ibatis.session.Configuration#newParameterHandler
>org.apache.ibatis.session.Configuration#newResultSetHandler
>org.apache.ibatis.executor.SimpleExecutor#prepareStatement
>org.apache.ibatis.executor.SimpleExecutor#prepareStatement底层就是JDBC
>org.apache.ibatis.executor.statement.BaseStatementHandler#prepare
>org.apache.ibatis.executor.statement.PreparedStatementHandler#query
>java.sql.PreparedStatement#execute 该方法是JDBC的,可以执行任意SQL语句
>org.apache.ibatis.executor.resultset.DefaultResultSetHandler#handleResultSets
>com.mysql.jdbc.StatementImpl#getResultSet
>org.apache.ibatis.logging.jdbc.PreparedStatementLogger#invoke
>org.apache.ibatis.executor.resultset.ResultSetWrapper#ResultSetWrapper
执行完后的逻辑:
>org.apache.ibatis.binding.MapperProxy#invoke
>org.apache.ibatis.binding.MapperProxy#cachedMapperMethod
比起spring而言,mybatis源码看起来还是很舒服的,后面会加上图文描述,以更清晰、更细模块的角度分享。