欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

手动模拟JDK动态代理的方法

程序员文章站 2022-07-06 09:32:02
为哪些方法代理?实现自己动态代理,首先需要关注的点就是,代理对象需要为哪些方法代理? 原生jdk的动态代理的实现是往上抽象出一层接口,让目标对象和代理对象都实现这个接口,怎么把接口的信...

为哪些方法代理?

实现自己动态代理,首先需要关注的点就是,代理对象需要为哪些方法代理? 原生jdk的动态代理的实现是往上抽象出一层接口,让目标对象和代理对象都实现这个接口,怎么把接口的信息告诉jdk原生的动态代理呢? 如下代码所示,proxy.newproxyinstance()方法的第二个参数将接口的信息传递了进去第一个参数的传递进去一个类加载器,在jdk的底层用它对比对象是否是同一个,标准就是相同对象的类加载器是同一个

serviceinterface) proxy.newproxyinstance(service.getclass().getclassloader()
        , new class[]{serviceinterface.class}, new invocationhandler() {
      @override
      public object invoke(object proxy, method method, object[] args) throws throwable {
        system.out.println("前置通知");
        method.invoke(finalservice,args);
        system.out.println("后置通知");
        return proxy;
      }
    });

我们也效仿它的做法. 代码如下:

public class test {
  public static void main(string[] args) {
    indexdao indexdao = new indexdao();
    dao dao =(dao) proxyutil.newinstance(dao.class,new myinvocationhandlerimpl(indexdao));
    assert dao != null;
    system.out.println(dao.say("changwu"));
  }
}

拿到了接口的class对象后,通过反射就得知了接口中有哪些方法描述对象method,获取到的所有的方法,这些方法就是我们需要增强的方法

如何将增强的逻辑动态的传递进来呢?

jdk的做法是通过invocationhandler的第三个参数完成,他是个接口,里面只有一个抽象方法如下: 可以看到它里面有三个入参,分别是 代理对象,被代理对象的方法,被代理对象的方法的参数

  public object invoke(object proxy, method method, object[] args)
    throws throwable;
}

当我们使用jdk的动态代理时,就是通过这个重写这个钩子函数,将逻辑动态的传递进去,并且可以选择在适当的地方让目标方法执行

invocationhandler接口必须存在必要性1:

为什么不传递进去method,而是传递进去invocationhandler对象呢? 很显然,我们的初衷是借助proxyutil工具类完成对代理对象的拼串封装,然后让这个代理对象去执行method.invoke(), 然而事与愿违,传递进来的method对象的确可以被proxyutil使用,调用method.invoke(), 但是我们的代理对象不能使用它,因为代理对象在这个proxyutil还以一堆等待拼接字符串, proxyutil的作用只能是往代理对象上叠加字符串,却不能直接传递给它一个对象,所以只能传递一个对象进来,然后通过反射获取到这个对象的实例,继而有可能实现method.invoke()

invocationhandler接口必须存在必要性2:

通过这个接口的规范,我们可以直接得知回调方法的名字就是invoke()所以说,在拼接字符串完成对代理对象的拼接时,可以直接写死它

思路

我们需要通过上面的proxyutil.newinstance(dao.class,new myinvocationhandlerimpl(indexdao))方法完成如下几件事

  1. 根据入参位置的信息,提取我们需要的信息,如包名,方法名,等等
  2. 根据我们提取的信息通过字符串的拼接完成一个全新的java的拼接
  3. 这个java类就是我们的代理对象
  4. 拼接好的java类是一个string字符串,我们将它写入磁盘取名xxx.java
  5. 通过proxyutil使用类加载器,将xxx.java读取jvm中,形成class对象
  6. 通过class对象反射出我们需要的代理对象
  7. proxyutil的实现如下:
public static object newinstance(class targetinf, myinvocationhandler invocationhandler) {

  method methods[] = targetinf.getdeclaredmethods();
  string line = "\n";
  string tab = "\t";
  string infname = targetinf.getsimplename();
  string content = "";
  string packagecontent = "package com.myproxy;" + line;
  //  导包,全部导入接口层面,换成具体的实现类就会报错
  //  
  string importcontent = "import " + targetinf.getname() + ";" + line
              + "import com.changwu.代理技术.模拟jdk实现动态代理.myinvocationhandler;" + line
              + "import java.lang.reflect.method;" + line
              + "import java.lang.exception;" + line;

  string clazzfirstlinecontent = "public class $proxy implements " + infname +"{"+ line;
  string filedcontent = tab + "private myinvocationhandler handler;"+ line;
  string constructorcontent = tab + "public $proxy (myinvocationhandler handler){" + line
      + tab + tab + "this.handler =handler;"
      + line + tab + "}" + line;
  string methodcontent = "";
  // 遍历它的全部方法,接口出现的全部方法进行增强
  for (method method : methods) {
    string returntypename = method.getreturntype().getsimplename();     method.getreturntype().getsimplename());

    string methodname = method.getname();
    class<?>[] parametertypes = method.getparametertypes();

    // 参数的.class
    string paramsclass = "";
    for (class<?> parametertype : parametertypes) {
      paramsclass+= parametertype.getname()+",";
    }

    string[] split = paramsclass.split(",");

    //方法参数的类型数组 sting.class string.class
    string argscontent = "";
    string paramscontent = "";
    int flag = 0;
    for (class arg : parametertypes) {
      // 获取方法名
      string temp = arg.getsimplename();
      argscontent += temp + " p" + flag + ",";
      paramscontent += "p" + flag + ",";
      flag++;
    }
    // 去掉方法参数中最后面多出来的,
    if (argscontent.length() > 0) {
      argscontent = argscontent.substring(0, argscontent.lastindexof(",") - 1);
      paramscontent = paramscontent.substring(0, paramscontent.lastindexof(",") - 1);
    }
    methodcontent += tab + "public " + returntypename + " " + methodname + "(" + argscontent + ") {" + line
        + tab + tab+"method method = null;"+line
        + tab + tab+"string [] args0 = null;"+line
        + tab + tab+"class<?> [] args1= null;"+line

        // invoke入参是method对象,而不是上面的字符串,所以的得通过反射创建出method对象
        + tab + tab+"try{"+line
        // 反射得到参数的类型数组
         + tab + tab + tab + "args0 = \""+paramsclass+"\".split(\",\");"+line
         + tab + tab + tab + "args1 = new class[args0.length];"+line
         + tab + tab + tab + "for (int i=0;i<args0.length;i++) {"+line
         + tab + tab + tab + "  args1[i]=class.forname(args0[i]);"+line
         + tab + tab + tab + "}"+line
        // 反射目标方法
        + tab + tab + tab + "method = class.forname(\""+targetinf.getname()+"\").getdeclaredmethod(\""+methodname+"\",args1);"+line
        + tab + tab+"}catch (exception e){"+line
        + tab + tab+ tab+"e.printstacktrace();"+line
        + tab + tab+"}"+line
        + tab + tab + "return ("+returntypename+") this.handler.invoke(method,\"暂时不知道的方法\");" + line; //
         methodcontent+= tab + "}"+line;
  }

  content = packagecontent + importcontent + clazzfirstlinecontent + filedcontent + constructorcontent + methodcontent + "}";

  file file = new file("d:\\com\\myproxy\\$proxy.java");
  try {
    if (!file.exists()) {
      file.createnewfile();
    }

    filewriter fw = new filewriter(file);
    fw.write(content);
    fw.flush();
    fw.close();

    // 将生成的.java的文件编译成 .class文件
    javacompiler compiler = toolprovider.getsystemjavacompiler();
    standardjavafilemanager filemgr = compiler.getstandardfilemanager(null, null, null);
    iterable units = filemgr.getjavafileobjects(file);
    javacompiler.compilationtask t = compiler.gettask(null, filemgr, null, null, null, units);
    t.call();
    filemgr.close();

    // 使用类加载器将.class文件加载进jvm
    // 因为产生的.class不在我们的工程当中
    url[] urls = new url[]{new url("file:d:\\\\")};
    urlclassloader urlclassloader = new urlclassloader(urls);
    class clazz = urlclassloader.loadclass("com.myproxy.$proxy");
    return clazz.getconstructor(myinvocationhandler.class).newinstance(invocationhandler);
  } catch (exception e) {
    e.printstacktrace();
  }
    return null;
}
}

运行的效果:

package com.myproxy;
import com.changwu.myproxy.pro.dao;
import com.changwu.myproxy.pro.myinvocationhandler;
import java.lang.reflect.method;
import java.lang.exception;
public class $proxy implements dao{
	private myinvocationhandler handler;
	public $proxy (myinvocationhandler handler){
		this.handler =handler;
	}
	public string say(string p) {
		method method = null;
		string [] args0 = null;
		class<?> [] args1= null;
		try{
			args0 = "java.lang.string,".split(",");
			args1 = new class[args0.length];
			for (int i=0;i<args0.length;i++) {
			  args1[i]=class.forname(args0[i]);
			}
			method = class.forname("com.changwu.myproxy.pro.dao").getdeclaredmethod("say",args1);
		}catch (exception e){
			e.printstacktrace();
		}
		return (string) this.handler.invoke(method,"暂时不知道的方法");
	}
}

解读

通过newinstance()用户获取到的代理对象就像上面的代理一样,这个过程是在java代码运行时生成的,但是直接看他的结果和静态代理差不错,这时用户再去调用代理对象的say(), 实际上就是在执行用户传递进去的invocationhandeler里面的invoke方法, 但是亮点是我们把目标方法的描述对象method同时给他传递进去了,让用户可以执行目标方法+增强的逻辑

当通过反射区执行method对象的invoke()方法时,指定的哪个对象的当前方法呢? 这个参数其实是我们手动传递进去的代理对象代码如下

public class myinvocationhandlerimpl implements myinvocationhandler {
  private object obj;
  public myinvocationhandlerimpl(object obj) {
    this.obj = obj;
  }
  @override
  public object invoke(method method, object[] args) {
    system.out.println("前置通知");
    try {
      method.invoke(obj,args);
    } catch (exception e) {
      e.printstacktrace();
    } 
    system.out.println("后置通知");
    return null;
  }
}

作者: 赐我白日梦

出处:https://www.cnblogs.com/zhuchangwu/p/11648911.html

以上就是手动模拟jdk动态代理的方法的详细内容,更多关于模拟jdk动态代理的资料请关注其它相关文章!