文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

类代理的方式有哪些

2024-04-02 19:55

关注

这篇文章主要讲解了“类代理的方式有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“类代理的方式有哪些”吧!

 五种类代理的方式

我们先定义出一个接口和相应的实现类,方便后续使用代理类在方法中添加输出信息。

「定义接口」

public interface IUserApi {      String queryUserInfo();  }

「实现接口」

public class UserApi implements IUserApi {      public String queryUserInfo() {         return "沉淀、分享、成长,让自己和他人都能有所收获!";     }  }

好!接下来我们就给这个类方法使用代理加入一行额外输出的信息。

0. 先补充一点反射的知识

@Test public void test_reflect() throws Exception {     Class<UserApi> clazz = UserApi.class;     Method queryUserInfo = clazz.getMethod("queryUserInfo");     Object invoke = queryUserInfo.invoke(clazz.newInstance());     System.out.println(invoke); }

1. JDK代理方式

public class JDKProxy {      public static <T> T getProxy(Class clazz) throws Exception {         ClassLoader classLoader = Thread.currentThread().getContextClassLoader();         return (T) Proxy.newProxyInstance(classLoader, new Class[]{clazz}, new InvocationHandler() {             public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {                 System.out.println(method.getName() + " 你被代理了,By JDKProxy!");                 return "沉淀、分享、成长,让自己和他人都能有所收获!";             }         });     }  }  @Test public void test_JDKProxy() throws Exception {     IUserApi userApi = JDKProxy.getProxy(IUserApi.class);     String invoke = userApi.queryUserInfo();     logger.info("测试结果:{}", invoke); }  

2. CGLIB代理方式

public class CglibProxy implements MethodInterceptor {     public Object newInstall(Object object) {         return Enhancer.create(object.getClass(), this);     }     public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {         System.out.println("我被CglibProxy代理了");         return methodProxy.invokeSuper(o, objects);     } }  @Test public void test_CglibProxy() throws Exception {     CglibProxy cglibProxy = new CglibProxy();     UserApi userApi = (UserApi) cglibProxy.newInstall(new UserApi());     String invoke = userApi.queryUserInfo();     logger.info("测试结果:{}", invoke); }  

3. ASM代理方式

public class ASMProxy extends ClassLoader {      public static <T> T getProxy(Class clazz) throws Exception {          ClassReader classReader = new ClassReader(clazz.getName());         ClassWriter classWriter = new ClassWriter(classReader, ClassWriter.COMPUTE_MAXS);          classReader.accept(new ClassVisitor(ASM5, classWriter) {             @Override             public MethodVisitor visitMethod(int access, final String name, String descriptor, String signature, String[] exceptions) {                  // 方法过滤                 if (!"queryUserInfo".equals(name))                     return super.visitMethod(access, name, descriptor, signature, exceptions);                  final MethodVisitor methodVisitor = super.visitMethod(access, name, descriptor, signature, exceptions);                  return new AdviceAdapter(ASM5, methodVisitor, access, name, descriptor) {                      @Override                     protected void onMethodEnter() {                         // 执行指令;获取静态属性                         methodVisitor.visitFieldInsn(Opcodes.GETSTATIC, "java/lang/System", "out", "Ljava/io/PrintStream;");                         // 加载常量 load constant                         methodVisitor.visitLdcInsn(name + " 你被代理了,By ASM!");                         // 调用方法                         methodVisitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, "java/io/PrintStream", "println", "(Ljava/lang/String;)V", false);                         super.onMethodEnter();                     }                 };             }         }, ClassReader.EXPAND_FRAMES);          byte[] bytes = classWriter.toByteArray();          return (T) new ASMProxy().defineClass(clazz.getName(), bytes, 0, bytes.length).newInstance();     }  }  @Test public void test_ASMProxy() throws Exception {     IUserApi userApi = ASMProxy.getProxy(UserApi.class);     String invoke = userApi.queryUserInfo();     logger.info("测试结果:{}", invoke); }  

4. Byte-Buddy代理方式

public class ByteBuddyProxy {      public static <T> T getProxy(Class clazz) throws Exception {          DynamicType.Unloaded<?> dynamicType = new ByteBuddy()                 .subclass(clazz)                 .method(ElementMatchers.<MethodDescription>named("queryUserInfo"))                 .intercept(MethodDelegation.to(InvocationHandler.class))                 .make();          return (T) dynamicType.load(Thread.currentThread().getContextClassLoader()).getLoaded().newInstance();     }  }  @RuntimeType public static Object intercept(@Origin Method method, @AllArguments Object[] args, @SuperCall Callable<?> callable) throws Exception {     System.out.println(method.getName() + " 你被代理了,By Byte-Buddy!");     return callable.call(); }  @Test public void test_ByteBuddyProxy() throws Exception {     IUserApi userApi = ByteBuddyProxy.getProxy(UserApi.class);     String invoke = userApi.queryUserInfo();     logger.info("测试结果:{}", invoke); }  

5. Javassist代理方式

public class JavassistProxy extends ClassLoader {      public static <T> T getProxy(Class clazz) throws Exception {          ClassPool pool = ClassPool.getDefault();         // 获取类         CtClass ctClass = pool.get(clazz.getName());         // 获取方法         CtMethod ctMethod = ctClass.getDeclaredMethod("queryUserInfo");         // 方法前加强         ctMethod.insertBefore("{System.out.println(\"" + ctMethod.getName() + " 你被代理了,By Javassist\");}");          byte[] bytes = ctClass.toBytecode();          return (T) new JavassistProxy().defineClass(clazz.getName(), bytes, 0, bytes.length).newInstance();     }  }  @Test public void test_JavassistProxy() throws Exception {     IUserApi userApi = JavassistProxy.getProxy(UserApi.class)     String invoke = userApi.queryUserInfo();     logger.info("测试结果:{}", invoke); }  

感谢各位的阅读,以上就是“类代理的方式有哪些”的内容了,经过本文的学习后,相信大家对类代理的方式有哪些这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯