An open API service indexing awesome lists of open source software.

https://github.com/fxbin/mybatis-learning

MyBatis Source Code Reading Record (mybatis 源码中文注释)
https://github.com/fxbin/mybatis-learning

Last synced: 8 months ago
JSON representation

MyBatis Source Code Reading Record (mybatis 源码中文注释)

Awesome Lists containing this project

README

          

MyBatis Source Code Reading Record (Version 3.5.6)
=====================================

![mybatis](http://mybatis.github.io/images/mybatis-logo.png)

Essentials
----------
* [See the docs](http://mybatis.github.io/mybatis-3)
* [Download Latest](https://github.com/mybatis/mybatis-3/releases)
* [Download Snapshot](https://oss.sonatype.org/content/repositories/snapshots/org/mybatis/mybatis/)

阅读进度
====
基础功能包
------
- [X] `org.apache.ibatis.exception`
- [X] `org.apache.ibatis.reflection`
- [X] `org.apache.ibatis.reflection.factory`
- [X] `org.apache.ibatis.reflection.invoker`
- [X] `org.apache.ibatis.reflection.property`
- [X] `org.apache.ibatis.reflection.wrapper`
- [X] `org.apache.ibatis.lang`
- [X] `org.apache.ibatis.annotations`
- [X] `org.apache.ibatis.type`
- [X] `org.apache.ibatis.io`
- [X] `org.apache.ibatis.logging`
- [X] `org.apache.ibatis.parsing`

配置解析包
------
- [X] `org.apache.ibatis.binding`
- [X] `org.apache.ibatis.builder`
- [X] `org.apache.ibatis.mapping`
- [X] `org.apache.ibatis.scripting`
- [X] `org.apache.ibatis.datasource`

核心操作包
------
- [X] `org.apache.ibatis.jdbc`
- [X] `org.apache.ibatis.cache`
- [X] `org.apache.ibatis.transaction`
- [X] `org.apache.ibatis.cursor`
- [X] `org.apache.ibatis.executor`
- [X] `org.apache.ibatis.session`
- [X] `org.apache.ibatis.plugin`