parent
9fa9775ea6
commit
8024b37b41
@ -1,4 +1,6 @@
|
|||||||
# MapperMethod
|
# MapperMethod
|
||||||
|
- Author: [HuiFer](https://github.com/huifer)
|
||||||
|
- Description: 该文介绍 mybatis MapperMethod 源码
|
||||||
- 源码地址: `org.apache.ibatis.binding.MapperMethod`,核心方法是`execute`
|
- 源码地址: `org.apache.ibatis.binding.MapperMethod`,核心方法是`execute`
|
||||||
|
|
||||||
```java
|
```java
|
@ -1,4 +1,6 @@
|
|||||||
# MethodSignature
|
# MethodSignature
|
||||||
|
- Author: [HuiFer](https://github.com/huifer)
|
||||||
|
- Description: 该文介绍 mybatis MethodSignature 类
|
||||||
- `org.apache.ibatis.binding.MapperMethod.MethodSignature`
|
- `org.apache.ibatis.binding.MapperMethod.MethodSignature`
|
||||||
```java
|
```java
|
||||||
/**
|
/**
|
@ -1,6 +1,6 @@
|
|||||||
# ParamNameResolver 源码解析
|
# ParamNameResolver 源码解析
|
||||||
- Author: [HuiFer](https://github.com/huifer)
|
- Author: [HuiFer](https://github.com/huifer)
|
||||||
- Description: 该文简单介 mybatis `@Param` 注解和`ParamNameResolver`
|
- Description: 该文介绍 mybatis `@Param` 注解和`ParamNameResolver`
|
||||||
## 源码
|
## 源码
|
||||||
- `org.apache.ibatis.reflection.ParamNameResolver`
|
- `org.apache.ibatis.reflection.ParamNameResolver`
|
||||||
```java
|
```java
|
@ -1,6 +1,6 @@
|
|||||||
# mybatis 反射
|
# mybatis 反射
|
||||||
- Author: [HuiFer](https://github.com/huifer)
|
- Author: [HuiFer](https://github.com/huifer)
|
||||||
- Description: 该文简单介 mybatis 反射相关类的源码
|
- Description: 该文介绍 mybatis 反射相关类的源码
|
||||||
## addDefaultConstructor
|
## addDefaultConstructor
|
||||||
|
|
||||||
- mybatis 的反射相关内容在`org.apache.ibatis.reflection` 下存放. 本片主要讲解`org.apache.ibatis.reflection.Reflector`类, 先看一下该类的属性
|
- mybatis 的反射相关内容在`org.apache.ibatis.reflection` 下存放. 本片主要讲解`org.apache.ibatis.reflection.Reflector`类, 先看一下该类的属性
|
@ -1,4 +1,7 @@
|
|||||||
# sqlCommand
|
# sqlCommand
|
||||||
|
- Author: [HuiFer](https://github.com/huifer)
|
||||||
|
- Description: 该文介绍 mybatis sqlCommand类的源码
|
||||||
|
|
||||||
- `org.apache.ibatis.binding.MapperMethod.SqlCommand`
|
- `org.apache.ibatis.binding.MapperMethod.SqlCommand`
|
||||||
```java
|
```java
|
||||||
/**
|
/**
|
@ -1,6 +1,6 @@
|
|||||||
# GenericTokenParser
|
# GenericTokenParser
|
||||||
- Author: [HuiFer](https://github.com/huifer)
|
- Author: [HuiFer](https://github.com/huifer)
|
||||||
|
-
|
||||||
```java
|
```java
|
||||||
/**
|
/**
|
||||||
* Copyright 2009-2019 the original author or authors.
|
* Copyright 2009-2019 the original author or authors.
|
Loading…
Reference in new issue