Skip to content

Commit 5aa7b2b

Browse files
committed
修改仓库路径
1 parent dc2953a commit 5aa7b2b

28 files changed

Lines changed: 28 additions & 28 deletions

docs/Mybatis/基础支持层/Mybatis-Cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mybatis 缓存
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis Cache 源码
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55

66
- `org.apache.ibatis.cache.Cache`
77
```java

docs/Mybatis/基础支持层/Mybatis-Reflector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mybatis 反射
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis 反射相关类的源码
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55

66
## addDefaultConstructor
77

docs/Mybatis/基础支持层/Mybatis-log.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mybatis 日志源码
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis 日志相关源码
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55

66
## 核心类
77
- `org.apache.ibatis.logging.Log`

docs/Mybatis/核心处理层/Mybatis-Alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Mybatis Alias
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis Alias 源码
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55
- 源码位置 :`org.apache.ibatis.type.Alias`
66
- 与 Alias 相关的一个方法`org.apache.ibatis.type.TypeAliasRegistry.registerAlias(java.lang.String, java.lang.Class<?>)`(别名注册)
77

docs/Mybatis/核心处理层/Mybatis-Cursor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Mybatis Cursor
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis Cursor 源码
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55
## Cursor
66
- 源码位置:`org.apache.ibatis.cursor.Cursor`
77
- 继承`Iterable`说明是一个迭代器,继承`Closeable`说明有一个东西需要关闭

docs/Mybatis/核心处理层/Mybatis-DataSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Mybatis DataSource
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis DataSource 源码
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55

66
- `org.apache.ibatis.datasource.DataSourceFactory`
77
```java

docs/Mybatis/核心处理层/Mybatis-DyanmicSqlSourcce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mybatis DyanmicSqlSourcce
22
- Author: [HuiFer](https://github.com/huifer)
3-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
3+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
44

55
- `org.apache.ibatis.scripting.xmltags.DynamicSqlSource`
66
- `org.apache.ibatis.scripting.xmltags.DynamicContext.DynamicContext`

docs/Mybatis/核心处理层/Mybatis-MapperMethod.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis MapperMethod 源码
44
- 源码地址: `org.apache.ibatis.binding.MapperMethod`,核心方法是`execute`
5-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
5+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
66

77
```java
88
/**

docs/Mybatis/核心处理层/Mybatis-MetaObject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mybatis MetaObject
22
- Author: [HuiFer](https://github.com/huifer)
3-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
3+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
44
- 源码位于:`org.apache.ibatis.reflection.MetaObject`
55
```java
66
/**

docs/Mybatis/核心处理层/Mybatis-MethodSignature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MethodSignature
22
- Author: [HuiFer](https://github.com/huifer)
33
- Description: 该文介绍 mybatis MethodSignature 类
4-
- 源码阅读工程: [huifer-mybatis](https://github.com/huifer/javaBook-src/tree/old/mybatis-3)
4+
- 源码阅读工程: [SourceHot-Mybatis](https://github.com/SourceHot/mybatis-read.git)
55
- `org.apache.ibatis.binding.MapperMethod.MethodSignature`
66
```java
77
/**

0 commit comments

Comments
 (0)