Skip to content

Commit 8cfe3b4

Browse files
jdk动态代理 代理接口方法 自定义实现逻辑-自定义注解使用
SqlSession执行原理初步解析
1 parent 711de40 commit 8cfe3b4

34 files changed

+134
-39
lines changed

.idea/workspace.xml

+18-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+31-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# mybatis-test
22

3-
mybatis源码研究-2019/12/04
3+
**mybatis源码研究-2019/12/04**
44
教你一周精通mybatis(调试版本:3.5.3)
5-
从整体到局部,最后再回到整体,从全局把控mybatis各个模块;
5+
从整体到局部,最后再回到整体,从全局把控mybatis各个模块;
6+
1.自底向上分析法,先对基础控件描述并阐述相关实现原理,带着问题一步一步完成封装,最终形成整体。
7+
2.从应用入手,自顶向下,挖掘实现机制,将具体模块一步一步细节拆解,最终形成深入全面的认识。
68
深挖mybatis所有核心知识点,真正掌握mybatis核心设计思想;
79
赠送各种流程图,思维导图。
810

@@ -13,7 +15,7 @@
1315

1416
* [mybatis-test](#mybatis-test)
1517
* [导航目录](#导航目录)
16-
* [一个例子](#一个例子)
18+
* [开个头](#开个头)
1719
* [XML基础知识(名称空间/文档验证/文档处理)](#xml基础知识名称空间文档验证文档处理)
1820
* [XML](#xml)
1921
* [XML名称空间](#xml名称空间)
@@ -37,6 +39,7 @@
3739
* [JDK动态代理](#jdk动态代理)
3840
* [从头开始](#从头开始)
3941
* [mybatis初始化流程](#mybatis初始化流程)
42+
* [SqlSession运行原理解析](#SqlSession运行原理解析)
4043
* [<em><strong>mybatis思维导图</strong></em>](#mybatis思维导图)
4144
* [<em><strong>主要参考资料:</strong></em>](#主要参考资料)
4245

@@ -47,9 +50,9 @@ mybatis整体架构分为三层,分别是基础支持层、核心处理层和
4750
> ![mybatis整体架构图](./mybatis整体架构图02.png "mybatis整体架构图")
4851
4952
****
50-
# 一个例子
53+
# 开个头
5154
参考项目代码~~~
52-
[详细标签版-MyBatis技术内幕](https://pan.baidu.com/s/1-JGtoXADDjQRw5v51np4vA "提取码是fcak")
55+
[详细书签版-MyBatis技术内幕](https://pan.baidu.com/s/1-JGtoXADDjQRw5v51np4vA "提取码是fcak")
5356

5457
# XML基础知识(名称空间/文档验证/文档处理)
5558

@@ -299,8 +302,29 @@ mybatis入口: SqlSessionFactoryBuilder读取xml文档,解析并构造Config
299302
sqlSessionFactory可以很轻易的拿到sqlSession,sqlSession提供系列操作方法,
300303
sqlSession Javadoc:Through this interface you can execute commands, get mappers and manage transactions.。
301304
## mybatis初始化流程
302-
mybatis初始化之后Configuration、sqlSessionFactory均已构造完成。
303-
> ![mybatis初始化流程](./mybatis初始化流程.png "mybatis初始化流程图")
305+
mybatis初始化之后Configuration、sqlSessionFactory均已构造完成。
306+
307+
MapperRegistry中维护了实际类型(*Mapper接口,由mapper元素的namespace属性指定)和代理类的map映射
308+
提供两个泛型方法:
309+
public <T> void addMapper(Class<T> type)中传入的Class将会被MapperProxyFactory代理,代理处理器是MapperProxy
310+
public <T> T getMapper(Class<T> type, SqlSession sqlSession) 返回代理类实例(与被代理类是同一类型)
311+
312+
![mybatis初始化流程](./mybatis初始化流程.png "mybatis初始化流程图")
313+
314+
## SqlSession运行原理解析
315+
316+
所有配置解析完成之后,mapper映射文件中,一个SQL元素节点被封装成一个MappedStatement对象,在SqlSession中注入全局配置单例
317+
Configuration通过元素id、MappedStatement映射可以找到对应MappedStatement对象,它包含了具体执行的sql字符串。
318+
MapperProxyFactory仅仅只是代理方法,由于接口不提供实现,所以需要自己实现方法处理逻辑,并提供返回值。
319+
`final MapperMethod mapperMethod = cachedMapperMethod(method);
320+
return mapperMethod.execute(sqlSession, args); `
321+
322+
具体实现在SqlSession中,SqlSession用到了缓存的MappedStatement执行真实的sql字符串;这是接口和实现分离思想的体现。
323+
同时这里用到了命令模式。
324+
325+
326+
327+
304328

305329
# ***mybatis思维导图***
306330
> ![mybatis思维导图](./mybatis整体架构图01.png "mybatis思维导图")

src/main/java/org/pp/mybatis/foundationsupportlayer/reflector/proxy/Client.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package org.pp.mybatis.foundationsupportlayer.reflector.proxy;
22

3-
import org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk.JdkProxy;
4-
import org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk.JdkSubject;
5-
import org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk.Subject;
3+
import org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk.*;
64

75
public class Client {
86
public static void main(String[] args) {
@@ -14,5 +12,9 @@ public static void main(String[] args) {
1412
proxy.getStr();
1513

1614
System.out.println("======================================================");
15+
16+
Subject proxy2 = JdkInterfaceProxy.newInstance(Subject.class);
17+
proxy2.doSomething();
18+
proxy2.getStr();
1719
}
1820
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
package org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk;
2+
3+
import java.lang.annotation.Annotation;
4+
import java.lang.reflect.InvocationHandler;
5+
import java.lang.reflect.Method;
6+
7+
public class JdkInterfaceDynamicProxyHandler implements InvocationHandler {
8+
9+
static {
10+
System.out.println("JdkInterfaceDynamicProxyHandler Class init.");
11+
}
12+
13+
private JdkInterfaceDynamicProxyHandler() {
14+
}
15+
16+
public Object invoke(Object proxy/* 对象的代理 */, Method method, Object[] args) throws Throwable {
17+
System.out.println("method.getDeclaringClass(): " + method.getDeclaringClass());
18+
if (Object.class.equals(method.getDeclaringClass())) {
19+
return method.invoke(this, args);
20+
}
21+
// wrap,getAnnotation() ops
22+
System.out.println(method.getName() + " invoke.");
23+
Annotation[] annotations = method.getAnnotations();
24+
for (Annotation annotation : annotations) {
25+
System.out.println("annotation annotationType: " + annotation.annotationType());
26+
if (annotation.annotationType() == NAnnotation.class) {
27+
NAnnotation nAnnotation = method.getAnnotation(NAnnotation.class);
28+
System.out.println("annotation value: " + nAnnotation.value());
29+
}
30+
}
31+
// 接口不提供实现,需要自己实现方法处理逻辑
32+
// MapperMethod--methodCache--sqlCommand,MethodSignature,Executor......
33+
return null;
34+
}
35+
36+
private static class Holder {
37+
static {
38+
System.out.println("Holder Class init.");
39+
}
40+
41+
private static /*final*/ /* final 指定为常量立即初始化? */ JdkInterfaceDynamicProxyHandler handler = new JdkInterfaceDynamicProxyHandler();
42+
}
43+
44+
public static JdkInterfaceDynamicProxyHandler getInstance() {
45+
return Holder.handler;
46+
}
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk;
2+
3+
import java.lang.reflect.InvocationHandler;
4+
import java.lang.reflect.Proxy;
5+
6+
public class JdkInterfaceProxy {
7+
8+
private JdkInterfaceProxy() {
9+
}
10+
11+
public static <T> T newInstance(Class<T> proxied/* 被代理接口 */, InvocationHandler handler) {
12+
//取得代理对象
13+
return (T) Proxy.newProxyInstance(proxied.getClassLoader(), new Class<?>[]{proxied}, handler);
14+
}
15+
16+
public static <T> T newInstance(Class<T> proxied) {
17+
InvocationHandler handler = JdkInterfaceDynamicProxyHandler.getInstance();
18+
return (T) Proxy.newProxyInstance(proxied.getClassLoader(), new Class<?>[]{proxied}, handler);
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.pp.mybatis.foundationsupportlayer.reflector.proxy.jdk;
2+
3+
import java.lang.annotation.ElementType;
4+
import java.lang.annotation.Retention;
5+
import java.lang.annotation.RetentionPolicy;
6+
import java.lang.annotation.Target;
7+
8+
@Target({ElementType.FIELD, ElementType.METHOD})
9+
@Retention(RetentionPolicy.RUNTIME)
10+
public @interface NAnnotation {
11+
String value();
12+
}

src/main/java/org/pp/mybatis/foundationsupportlayer/reflector/proxy/jdk/Subject.java

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
public interface Subject {
44

5+
@NAnnotation("你好")
56
void doSomething();
67

78
void getStr();
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)