上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 44 下一页
摘要: 一 aspect 和 advisor的区别 https://blog.csdn.net/qq_44750696/article/details/101638722 二 advisor 演示 Spring 选择代理 package com.mangoubiubiu.show.a15; import o 阅读全文
posted @ 2022-10-02 17:37 KwFruit 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 总结 当调用 MethodProxy 的 invoke 或 invokeSuper 方法时, 会动态生成两个类 ProxyFastClass 配合代理对象一起使用, 避免反射 TargetFastClass 配合目标对象一起使用, 避免反射 (Spring 用的这种) TargetFastClass 阅读全文
posted @ 2022-10-02 15:47 KwFruit 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 一、模拟cglib代理 package com.mangoubiubiu.show.a14; public class Target { public void save(){ System.out.println("save()"); } public void save(int i){ Syst 阅读全文
posted @ 2022-09-25 16:17 KwFruit 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 一、模拟cglib代理 package com.mangoubiubiu.show.a14; import org.springframework.cglib.proxy.MethodInterceptor; import java.lang.reflect.Method; import java. 阅读全文
posted @ 2022-09-25 15:47 KwFruit 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package com.mangoubiubiu.show.asm; import java.lang.reflect.Field; import java.lang.reflect.Method; // 运行时请添加 --add-opens java.base/java.lang.ref 阅读全文
posted @ 2022-09-25 15:18 KwFruit 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 一、利用ASM插件生成 asm生成代理类的字节码代码 1、写好代理类 package com.mangoubiubiu.show.asm; import org.springframework.cglib.proxy.UndeclaredThrowableException; import java 阅读全文
posted @ 2022-09-25 11:55 KwFruit 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 一、利用Arthas工具 反编译出源码 发现和我们自己写的模拟jdk代理差不多 /* * Decompiled with CFR. * * Could not load the following classes: * com.mangoubiubiu.show.a12.JdkProxyDemo$F 阅读全文
posted @ 2022-09-25 10:50 KwFruit 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 一、获取目标方法的返回 package com.mangoubiubiu.show.a13; import java.lang.reflect.Method; public class A13 { interface Foo{ void foo() ; int bar() ; } interface 阅读全文
posted @ 2022-09-25 10:41 KwFruit 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 一、简单代理 package com.mangoubiubiu.show.a13; public class A13 { interface Foo{ void foo(); } static class Target implements Foo{ @Override public void fo 阅读全文
posted @ 2022-09-25 10:17 KwFruit 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package com.mangoubiubiu.show.a12; import org.springframework.cglib.proxy.Enhancer; import org.springframework.cglib.proxy.MethodInterceptor; pub 阅读全文
posted @ 2022-09-24 16:25 KwFruit 阅读(47) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 44 下一页