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 源码中文注释)
- Host: GitHub
- URL: https://github.com/fxbin/mybatis-learning
- Owner: fxbin
- License: apache-2.0
- Created: 2020-10-26T10:23:23.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T02:57:22.000Z (over 3 years ago)
- Last Synced: 2025-05-16T08:44:00.231Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 963 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MyBatis Source Code Reading Record (Version 3.5.6)
=====================================

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`