(14) Java 动态代理(JDK)

来源:互联网 发布:python批量替换字符串 编辑:程序博客网 时间:2024/06/07 06:26

--------------------------------------------------------------------------------------------------------------------

Java动态代理详解

说到动态代理,顾名思义就是动态的代理。什么是动态代理:

说起动态,其实不如先说什么是静态。所谓静态代理,个人理解为自己手写的代理类,或者用工具生成的代理类,或者别人帮你写的代理类(没说一样...)。总之,就是程序运行前就已经存在的编译好的代理类。

相反,如果代理类程序运行前并不存在,需要在程序运行时动态生成(无需手工编写代理类源码),那就是今天要说的动态代理了。

如何生成的:根据Java的反射机制动态生成。


(1)目标接口TargetInterface: 

Java代码  收藏代码
  1. public interface TargetInterface {  
  2.     public int targetMethodA(int number);  
  3.     public int targetMethodB(int number);  
  4. }  

很简单,一个普通的接口,里面有若干方法(此处写2个示范一下)


(2)实现该接口的委托类ConcreteClass:

Java代码  收藏代码
  1. public class ConcreteClass implements TargetInterface{  
  2.   
  3.     public int targetMethodA(int number) {  
  4.         System.out.println("开始调用目标类的方法targetMethodA...");  
  5.         System.out.println("操作-打印数字:"+number);  
  6.         System.out.println("结束调用目标类的方法targetMethodA...");  
  7.         return number;  
  8.     }  
  9.       
  10.     public int targetMethodB(int number){  
  11.         System.out.println("开始调用目标类的方法targetMethodB...");  
  12.         System.out.println("操作-打印数字:"+number);  
  13.         System.out.println("结束调用目标类的方法targetMethodB...");  
  14.         return number;  
  15.     }  
  16.   
  17. }  

很简单,一个普通的类,实现了目标接口。


(3)代理处理器类ProxyHandler implements InvocationHandler

Java代码  收藏代码
  1. public class ProxyHandler implements InvocationHandler{  
  2.     private Object concreteClass;  
  3.       
  4.     public ProxyHandler(Object concreteClass){  
  5.         this.concreteClass=concreteClass;  
  6.     }  
  7.   
  8.     public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {  
  9.         System.out.println("proxy:"+proxy.getClass().getName());  
  10.         System.out.println("method:"+method.getName());  
  11.         System.out.println("args:"+args[0].getClass().getName());  
  12.           
  13.         System.out.println("Before invoke method...");  
  14.         Object object=method.invoke(concreteClass, args);//普通的Java反射代码,通过反射执行某个类的某方法  
  15.         //System.out.println(((ConcreteClass)concreteClass).targetMethod(10)+(Integer)args[0]);  
  16.         System.out.println("After invoke method...");  
  17.         return object;  
  18.     }  
  19.   
  20. }  

该类实现了Java反射包中的InvocationHandler接口。代理实例调用方法时,将对方法调用指派到它的代理处理器程序的invoke方法中。

invoke方法内部实现预处理,对委托类方法调用,事后处理等逻辑。


(4)最后是入口程序:

Java代码  收藏代码
  1. public class DynamicProxyExample {  
  2.     public static void main(String[] args){  
  3.          ConcreteClass c=new ConcreteClass();//元对象(被代理对象)  
  4.          InvocationHandler ih=new ProxyHandler(c);//代理实例的调用处理程序。  
  5.          //创建一个实现业务接口的代理类,用于访问业务类(见代理模式)。  
  6.          //返回一个指定接口的代理类实例,该接口可以将方法调用指派到指定的调用处理程序,如ProxyHandler。  
  7.          TargetInterface targetInterface=  
  8.              (TargetInterface)Proxy.newProxyInstance(c.getClass().getClassLoader(),c.getClass().getInterfaces(),ih);  
  9.          //调用代理类方法,Java执行InvocationHandler接口的方法.  
  10.          int i=targetInterface.targetMethodA(5);  
  11.          System.out.println(i);  
  12.          System.out.println();  
  13.          int j=targetInterface.targetMethodB(15);  
  14.          System.out.println(j);  
  15.     }  
  16. }  

首先创建委托类对象,将其以构造函数传入代理处理器,代理处理器ProxyHandler中会以Java反射方式调用该委托类对应的方法。

然后使用Java反射机制中的Proxy.newProxyInstance方式创建一个代理类实例,创建该实例需要指定该实例的类加载器,需要实现的接口(即目标接口),以及处理代理实例接口调用的处理器。

最后,调用代理类目标接口方法时,会自动将其转发到代理处理器中的invoke方法内,invoke方法内部实现预处理,对委托类方法调用,事后处理等逻辑。

proxy:$Proxy0method:targetMethodAargs:java.lang.IntegerBefore invoke method...开始调用目标类的方法targetMethodA...操作-打印数字:5结束调用目标类的方法targetMethodA...After invoke method...5proxy:$Proxy0method:targetMethodBargs:java.lang.IntegerBefore invoke method...开始调用目标类的方法targetMethodB...操作-打印数字:15结束调用目标类的方法targetMethodB...After invoke method...15

/* 1 死循环 加 报错 * Caused by: java.lang.reflect.UndeclaredThrowableExceptionat $Proxy0.targetMethodA(Unknown Source)at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)**  原因*  InvocationHandlerOfMy 类中 写成了 Object object = method.invoke(proxy, args);*  实际应为: Object object = method.invoke(ConcreteClass, args);  //ConcreteClass为代理元对象* */ 
----------------------------------------------------------------------------------------------------------------------

(http://www.cnblogs.com/huxi/archive/2009/12/16/1625899.html)

jdk的动态代理是基于接口的,必须实现了某一个或多个任意接口才可以被代理,并且只有这些接口中的方法会被代理。

看了一下jdk带的动态代理api,发现没有例子实在是很容易走弯路,所以这里写一个加法器的简单示例。


// Adder.java  
public interface Adder {
    int add(int a, int b);
}

// AdderImpl.java 
public class AdderImpl implements Adder {
    @Override
    public int add(int a, int b) {
        return a + b;
    }
}
现在我们有一个接口Adder以及一个实现了这个接口的类AdderImpl,写一个Test测试一下。
// Test.java
public class Test {
    public static void main(String[] args) throws Exception {
        Adder calc = new AdderImpl();
        int result = calc.add(1, 2);
        System.out.println("The result is " + result);
    }
}
很显然,控制台会输出:

The result is 3

然而现在我们需要在加法器使用之后记录一些信息以便测试,但AdderImpl的源代码不能更改,就像这样:
Proxy: invoke add() at 2009-12-16 17:18:06

The result is 3

动态代理可以很轻易地解决这个问题。我们只需要写一个自定义的调用处理器(实现接口java.lang.reflect.InvokationHandler),然后使用类java.lang.reflect.Proxy中的静态方法生成Adder的代理类,

并把这个代理类当做原先的Adder使用就可以。


第一步:实现InvokationHandler,定义调用方法时应该执行的动作。
自定义一个类MyHandler实现接口java.lang.reflect.InvokationHandler,需要重写的方法只有invoke一个:
// AdderHandler.java
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
 
class AdderHandler implements InvocationHandler {
    /**
     * @param proxy 接下来Proxy要为你生成的代理类的实例,注意,并不是我们new出来的AdderImpl
     * @param method 调用的方法的Method实例。如果调用了add(),那么就是add()的Method实例
     * @param args 调用方法时传入的参数。如果调用了add(),那么就是传入add()的参数
     * @return 使用代理后将作为调用方法后的返回值。如果调用了add(),那么就是调用add()后的返回值
     */
    @Override
    public Object invoke(Object proxy, Method method, Object[] args)
            throws Throwable {
          // ...
    }
}
使用代理后,这个方法将取代指定的所有接口中的所有方法的执行。在本例中,调用adder.add()方法时,实际执行的将是invoke()。所以为了有正确的结果,我们需要在invoke()方法中手动调用add()方法。再看看invoke()方法的参数,正好符合反射需要的所有条件,所以这时我们马上会想到这样做:

Object returnValue = method.invoke(proxy, args);  

如果你真的这么做了,那么恭喜你,你掉入了jdk为你精心准备的圈套。proxy是jdk为你生成的代理类的实例,实际上就是使用代理之后adder引用所指向的对象。由于我们调用了adder.add(1, 2),才使得invoke()执行,如果在invoke()中使用method.invoke(proxy, args),那么又会使invoke()执行。没错,这是个死循环。

然而,invoke()方法没有别的参数让我们使用了。最简单的解决方法就是,为MyHandler加入一个属性指向实际被代理的对象。所以,因为jdk的冷幽默,我们需要在自定义的Handler中加入以下这么一段:

// 被代理的对象
private Object target;
 
public AdderHandler(Object target) {
    this.target = target;
}
喜欢的话还可以加上getter/setter。接着,invoke()就可以这么用了:
// AdderHandler.java
package test;
 
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.util.Date;
 
class AdderHandler implements InvocationHandler {
    // 被代理的对象
    private Object target;
 
    public AdderHandler(Object target) {
        this.target = target;
    }
     
    @Override
    public Object invoke(Object proxy, Method method, Object[] args)
            throws Throwable {
        // 调用被代理对象的方法并得到返回值
        Object returnValue = method.invoke(target, args);
        // 调用方法前后都可以加入一些其他的逻辑
        System.out.println("Proxy: invoke " + method.getName() + "() at " + new Date().toLocaleString());
        // 可以返回任何想要返回的值
        return returnValue;
    }
}

第二步:使用jdk提供的java.lang.reflect.Proxy生成代理对象。
使用newProxyInstance()方法就可以生成一个代理对象。把这个方法的签名拿出来:
/**
 * @param loader 类加载器,用于加载生成的代理类。
 * @param interfaces 需要代理的接口。这些接口的所有方法都会被代理。
 * @param h 第一步中我们建立的Handler类的实例。
 * @return 代理对象,实现了所有要代理的接口。
 */
public static Object newProxyInstance(ClassLoader loader,
          Class<?>[] interfaces,
          InvocationHandler h)
throws IllegalArgumentException

这个方法会做这样一件事情,他将把你要代理的全部接口用一个由代码动态生成的类类实现,所有的接口中的方法都重写为调用InvocationHandler.invoke()方法。这个类的代码类似于这样:


// 模拟Proxy生成的代理类,这个类是动态生成的,并没有对应的.java文件。
class AdderProxy extends Proxy implements Adder {
    protected AdderProxy(InvocationHandler h) {
        super(h);
    }
    @Override
    public int add(int a, int b) {
        try {
            Method m = Adder.class.getMethod("add", new Class[] {int.class, int.class});
            Object[] args = {a, b};
            return (Integer) h.invoke(this, m, args);
        } catch (Throwable e) {
            throw new RuntimeException(e);
        }
    }
}
据api说,所有生成的代理类都是Proxy的子类。当然,生成的这个类的代码你是看不到的,而且Proxy里面也是调用sun.XXX包的api生成;一般情况下应该是直接生成了字节码。然后,使用你提供的ClassLoader将这个类加载并实例化一个对象作为代理返回。

看明白这个方法后,我们来改造一下main()方法。
// Test.java
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
 
public class Test {
    public static void main(String[] args) throws Exception {
        Adder calc = new AdderImpl();
         
        // 类加载器
        ClassLoader loader = Test.class.getClassLoader();
        // 需要代理的接口
        Class[] interfaces = {Adder.class};
        // 方法调用处理器,保存实际的AdderImpl的引用
        InvocationHandler h = new AdderHandler(calc);
        // 为calc加上代理
        calc = (Adder) Proxy.newProxyInstance(loader, interfaces, h);
         
        /* 什么?你说还有别的需求? */
        // 另一个处理器,保存前处理器的引用
        // InvocationHandler h2 = new XXOOHandler(h);
        // 再加代理
        // calc = (Adder) Proxy.newProxyInstance(loader, interfaces, h2);
         
        int result = calc.add(1, 2);
        System.out.println("The result is " + result);
    }
}
输出结果会是什么呢?
Proxy: invoke add() at 2009-12-16 18:21:33
The result is 3

----------------------------------------------------------------------------------------------------------------------

(http://rejoy.iteye.com/blog/1627405)

 之前虽然会用JDK的动态代理,但是有些问题却一直没有搞明白。比如说:InvocationHandler的invoke方法是由谁来调用的,代理对象是怎么生成的,直到前几个星期才把这些问题全部搞明白了。 
    废话不多说了,先来看一下JDK的动态是怎么用的。 

Java代码  收藏代码
  1. package dynamic.proxy;   
  2.  
  3. import java.lang.reflect.InvocationHandler;  
  4. import java.lang.reflect.Method;  
  5. import java.lang.reflect.Proxy;  
  6.   
  7. /** 
  8.  * 实现自己的InvocationHandler 
  9.  * @author zyb 
  10.  * @since 2012-8-9 
  11.  * 
  12.  */  
  13. public class MyInvocationHandler implements InvocationHandler {  
  14.       
  15.     // 目标对象   
  16.     private Object target;                          
  17.     /** 
  18.      * 构造方法 
  19.      * @param target 目标对象  
  20.      */  
  21.     public MyInvocationHandler(Object target) {  
  22.         super();  
  23.         this.target = target;  
  24.     }  
  25.     /** 
  26.      * 执行目标对象的方法 
  27.      */  
  28.     public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {  
  29.           
  30.         // 在目标对象的方法执行之前简单的打印一下  
  31.         System.out.println("------------------before------------------");  
  32.         // 执行目标对象的方法  
  33.         Object result = method.invoke(target, args);  
  34.         // 在目标对象的方法执行之后简单的打印一下  
  35.         System.out.println("-------------------after------------------");  
  36.         return result;  
  37.     }  
  38.     /** 
  39.      * 获取目标对象的代理对象 
  40.      * @return 代理对象 
  41.      */  
  42.     public Object getProxy() {  
  43.         return Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),   
  44.                 target.getClass().getInterfaces(), this);  
  45.     }  
  46. }  
  47.   
  48. package dynamic.proxy;  
  49. /** 
  50.  * 目标对象实现的接口,用JDK来生成代理对象一定要实现一个接口 
  51.  * @author zyb 
  52.  * @since 2012-8-9 
  53.  * 
  54.  */  
  55. public interface UserService {  
  56.     /** 
  57.      * 目标方法  
  58.      */  
  59.     public abstract void add();  
  60. }  
  61.   
  62. package dynamic.proxy;   
  63. /** 
  64.  * 目标对象 
  65.  * @author zyb 
  66.  * @since 2012-8-9 
  67.  * 
  68.  */  
  69. public class UserServiceImpl implements UserService {  
  70.     /* (non-Javadoc) 
  71.      * @see dynamic.proxy.UserService#add() 
  72.      */  
  73.     public void add() {  
  74.         System.out.println("--------------------add---------------");  
  75.     }  
  76. }  
  77.   
  78. package dynamic.proxy;   
  79. import org.junit.Test;  
  80. /** 
  81.  * 动态代理测试类 
  82.  * @author zyb 
  83.  * @since 2012-8-9 
  84.  * 
  85.  */  
  86. public class ProxyTest {  
  87.   
  88.     @Test  
  89.     public void testProxy() throws Throwable {  
  90.         // 实例化目标对象  
  91.         UserService userService = new UserServiceImpl();  
  92.         // 实例化InvocationHandler  
  93.         MyInvocationHandler invocationHandler = new MyInvocationHandler(userService);  
  94.           
  95.         // 根据目标对象生成代理对象  
  96.         UserService proxy = (UserService) invocationHandler.getProxy();  
  97.         // 调用代理对象的方法  
  98.         proxy.add();  
  99.           
  100.     }  
  101. }  
执行结果如下: 
------------------before------------------ 
--------------------add--------------- 
-------------------after------------------
 

  用起来是很简单吧,其实这里基本上就是AOP的一个简单实现了在目标对象的方法执行之前和执行之后进行了增强

   Spring的AOP实现其实也是用了Proxy和InvocationHandler这两个东西的。 


    用起来是比较简单,但是如果能知道它背后做了些什么手脚,那就更好不过了。首先来看一下JDK是怎样生成代理对象的。既然生成代理对象是用的Proxy类的静态方newProxyInstance,那么我们就去它的源码里看一下它到底都做了些什么? 
Java代码  收藏代码
  1. /** 
  2.  * loader:类加载器 
  3.  * interfaces:目标对象实现的接口 
  4.  * h:InvocationHandler的实现类 
  5.  */  
  6. public static Object newProxyInstance(ClassLoader loader,  
  7.                       Class<?>[] interfaces,  
  8.                       InvocationHandler h)  
  9.     throws IllegalArgumentException  
  10.     {  
  11.     if (h == null) {  
  12.         throw new NullPointerException();  
  13.     }  
  14.     /* 
  15.      * Look up or generate the designated proxy class. 
  16.      */  
  17.     Class cl = getProxyClass(loader, interfaces);  
  18.     /* 
  19.      * Invoke its constructor with the designated invocation handler. 
  20.      */  
  21.     try {  
  22.         // 调用代理对象的构造方法(也就是$Proxy0(InvocationHandler h))  
  23.         Constructor cons = cl.getConstructor(constructorParams);  
  24.         // 生成代理类的实例并把MyInvocationHandler的实例传给它的构造方法  
  25.         return (Object) cons.newInstance(new Object[] { h });  
  26.     } catch (NoSuchMethodException e) {  
  27.         throw new InternalError(e.toString());  
  28.     } catch (IllegalAccessException e) {  
  29.         throw new InternalError(e.toString());  
  30.     } catch (InstantiationException e) {  
  31.         throw new InternalError(e.toString());  
  32.     } catch (InvocationTargetException e) {  
  33.         throw new InternalError(e.toString());  
  34.     }  
  35.     }  

   我们再进去getProxyClass方法看一下 
Java代码  收藏代码
  1. public static Class<?> getProxyClass(ClassLoader loader,   
  2.                                      Class<?>... interfaces)  
  3.     throws IllegalArgumentException  
  4.     {  
  5.     // 如果目标类实现的接口数大于65535个则抛出异常(我XX,谁会写这么NB的代码啊?)  
  6.     if (interfaces.length > 65535) {  
  7.         throw new IllegalArgumentException("interface limit exceeded");  
  8.     }  
  9.   
  10.     // 声明代理对象所代表的Class对象(有点拗口)  
  11.     Class proxyClass = null;  
  12.   
  13.     String[] interfaceNames = new String[interfaces.length];  
  14.   
  15.     Set interfaceSet = new HashSet();   // for detecting duplicates  
  16.   
  17.     // 遍历目标类所实现的接口  
  18.     for (int i = 0; i < interfaces.length; i++) {  
  19.           
  20.         // 拿到目标类实现的接口的名称  
  21.         String interfaceName = interfaces[i].getName();  
  22.         Class interfaceClass = null;  
  23.         try {  
  24.         // 加载目标类实现的接口到内存中  
  25.         interfaceClass = Class.forName(interfaceName, false, loader);  
  26.         } catch (ClassNotFoundException e) {  
  27.         }  
  28.         if (interfaceClass != interfaces[i]) {  
  29.         throw new IllegalArgumentException(  
  30.             interfaces[i] + " is not visible from class loader");  
  31.         }  
  32.   
  33.         // 中间省略了一些无关紧要的代码 .......  
  34.           
  35.         // 把目标类实现的接口代表的Class对象放到Set中  
  36.         interfaceSet.add(interfaceClass);  
  37.   
  38.         interfaceNames[i] = interfaceName;  
  39.     }  
  40.   
  41.     // 把目标类实现的接口名称作为缓存(Map)中的key  
  42.     Object key = Arrays.asList(interfaceNames);  
  43.   
  44.     Map cache;  
  45.       
  46.     synchronized (loaderToCache) {  
  47.         // 从缓存中获取cache  
  48.         cache = (Map) loaderToCache.get(loader);  
  49.         if (cache == null) {  
  50.         // 如果获取不到,则新建地个HashMap实例  
  51.         cache = new HashMap();  
  52.         // 把HashMap实例和当前加载器放到缓存中  
  53.         loaderToCache.put(loader, cache);  
  54.         }  
  55.   
  56.     }  
  57.   
  58.     synchronized (cache) {  
  59.   
  60.         do {  
  61.         // 根据接口的名称从缓存中获取对象  
  62.         Object value = cache.get(key);  
  63.         if (value instanceof Reference) {  
  64.             proxyClass = (Class) ((Reference) value).get();  
  65.         }  
  66.         if (proxyClass != null) {  
  67.             // 如果代理对象的Class实例已经存在,则直接返回  
  68.             return proxyClass;  
  69.         } else if (value == pendingGenerationMarker) {  
  70.             try {  
  71.             cache.wait();  
  72.             } catch (InterruptedException e) {  
  73.             }  
  74.             continue;  
  75.         } else {  
  76.             cache.put(key, pendingGenerationMarker);  
  77.             break;  
  78.         }  
  79.         } while (true);  
  80.     }  
  81.   
  82.     try {  
  83.         // 中间省略了一些代码 .......  
  84.           
  85.         // 这里就是动态生成代理对象的最关键的地方  
  86.         byte[] proxyClassFile = ProxyGenerator.generateProxyClass(  
  87.             proxyName, interfaces);  
  88.         try {  
  89.             // 根据代理类的字节码生成代理类的实例  
  90.             proxyClass = defineClass0(loader, proxyName,  
  91.             proxyClassFile, 0, proxyClassFile.length);  
  92.         } catch (ClassFormatError e) {  
  93.             throw new IllegalArgumentException(e.toString());  
  94.         }  
  95.         }  
  96.         // add to set of all generated proxy classes, for isProxyClass  
  97.         proxyClasses.put(proxyClass, null);  
  98.   
  99.     }   
  100.     // 中间省略了一些代码 .......  
  101.       
  102.     return proxyClass;  
  103.     }  
进去ProxyGenerator类的静态方法generateProxyClass,这里是真正生成代理类class字节码的地方。 
Java代码  收藏代码
  1. public static byte[] generateProxyClass(final String name,  
  2.                                            Class[] interfaces)  
  3.    {  
  4.        ProxyGenerator gen = new ProxyGenerator(name, interfaces);  
  5.     // 这里动态生成代理类的字节码,由于比较复杂就不进去看了  
  6.        final byte[] classFile = gen.generateClassFile();  
  7.   
  8.     // 如果saveGeneratedFiles的值为true,则会把所生成的代理类的字节码保存到硬盘上  
  9.        if (saveGeneratedFiles) {  
  10.            java.security.AccessController.doPrivileged(  
  11.            new java.security.PrivilegedAction<Void>() {  
  12.                public Void run() {  
  13.                    try {  
  14.                        FileOutputStream file =  
  15.                            new FileOutputStream(dotToSlash(name) + ".class");  
  16.                        file.write(classFile);  
  17.                        file.close();  
  18.                        return null;  
  19.                    } catch (IOException e) {  
  20.                        throw new InternalError(  
  21.                            "I/O exception saving generated file: " + e);  
  22.                    }  
  23.                }  
  24.            });  
  25.        }  
  26.   
  27.     // 返回代理类的字节码  
  28.        return classFile;  
  29.    }  
现在,JDK是怎样动态生成代理类的字节的原理已经一目了然了。 

好了,再来解决另外一个问题,那就是由谁来调用InvocationHandler的invoke方法的。要解决这个问题就要看一下JDK到底为我们生成了一个什么东西。用以下代码可以获取到JDK为我们生成的字节码并写到硬盘中。 
Java代码  收藏代码
  1. package dynamic.proxy;   
  2.   
  3. import java.io.FileOutputStream;  
  4. import java.io.IOException;  
  5.   
  6. import sun.misc.ProxyGenerator;  
  7.   
  8. /** 
  9.  * 代理类的生成工具 
  10.  * @author zyb 
  11.  * @since 2012-8-9 
  12.  */  
  13. public class ProxyGeneratorUtils {  
  14.   
  15.     /** 
  16.      * 把代理类的字节码写到硬盘上 
  17.      * @param path 保存路径 
  18.      */  
  19.     public static void writeProxyClassToHardDisk(String path) {  
  20.         // 第一种方法,这种方式在刚才分析ProxyGenerator时已经知道了  
  21.         // System.getProperties().put("sun.misc.ProxyGenerator.saveGeneratedFiles", true);  
  22.           
  23.         // 第二种方法  
  24.           
  25.         // 获取代理类的字节码  
  26.         byte[] classFile = ProxyGenerator.generateProxyClass("$Proxy11", UserServiceImpl.class.getInterfaces());  
  27.           
  28.         FileOutputStream out = null;  
  29.           
  30.         try {  
  31.             out = new FileOutputStream(path);  
  32.             out.write(classFile);  
  33.             out.flush();  
  34.         } catch (Exception e) {  
  35.             e.printStackTrace();  
  36.         } finally {  
  37.             try {  
  38.                 out.close();  
  39.             } catch (IOException e) {  
  40.                 e.printStackTrace();  
  41.             }  
  42.         }  
  43.     }  
  44. }  
  45.   
  46. package dynamic.proxy;   
  47.   
  48. import org.junit.Test;  
  49.   
  50. /** 
  51.  * 动态代理测试类 
  52.  * @author zyb 
  53.  * @since 2012-8-9 
  54.  * 
  55.  */  
  56. public class ProxyTest {  
  57.   
  58.     @Test  
  59.     public void testProxy() throws Throwable {  
  60.         // 实例化目标对象  
  61.         UserService userService = new UserServiceImpl();  
  62.           
  63.         // 实例化InvocationHandler  
  64.         MyInvocationHandler invocationHandler = new MyInvocationHandler(userService);  
  65.           
  66.         // 根据目标对象生成代理对象  
  67.         UserService proxy = (UserService) invocationHandler.getProxy();  
  68.           
  69.         // 调用代理对象的方法  
  70.         proxy.add();  
  71.           
  72.     }  
  73.       
  74.     @Test  
  75.     public void testGenerateProxyClass() {  
  76.         ProxyGeneratorUtils.writeProxyClassToHardDisk("F:/$Proxy11.class");  
  77.     }  
  78. }  


通过以上代码,就可以在F盘上生成一个$Proxy.class文件了,现在用反编译工具来看一下这个class文件里面的内容。 
Java代码  收藏代码
  1. // Decompiled by DJ v3.11.11.95 Copyright 2009 Atanas Neshkov  Date: 2012/8/9 20:11:32  
  2. // Home Page: http://members.fortunecity.com/neshkov/dj.html  http://www.neshkov.com/dj.html - Check often for new version!  
  3. // Decompiler options: packimports(3)   
  4.   
  5. import dynamic.proxy.UserService;  
  6. import java.lang.reflect.*;  
  7.   
  8. public final class $Proxy11 extends Proxy  
  9.     implements UserService  
  10. {  
  11.   
  12.     // 构造方法,参数就是刚才传过来的MyInvocationHandler类的实例  
  13.     public $Proxy11(InvocationHandler invocationhandler)  
  14.     {  
  15.         super(invocationhandler);  
  16.     }  
  17.   
  18.     public final boolean equals(Object obj)  
  19.     {  
  20.         try  
  21.         {  
  22.             return ((Boolean)super.h.invoke(this, m1, new Object[] {  
  23.                 obj  
  24.             })).booleanValue();  
  25.         }  
  26.         catch(Error _ex) { }  
  27.         catch(Throwable throwable)  
  28.         {  
  29.             throw new UndeclaredThrowableException(throwable);  
  30.         }  
  31.     }  
  32.   
  33.     /** 
  34.      * 这个方法是关键部分 
  35.      */  
  36.     public final void add()  
  37.     {  
  38.         try  
  39.         {  
  40.             // 实际上就是调用MyInvocationHandler的public Object invoke(Object proxy, Method method, Object[] args)方法,第二个问题就解决了  
  41.             super.h.invoke(this, m3, null);  
  42.             return;  
  43.         }  
  44.         catch(Error _ex) { }  
  45.         catch(Throwable throwable)  
  46.         {  
  47.             throw new UndeclaredThrowableException(throwable);  
  48.         }  
  49.     }  
  50.   
  51.     public final int hashCode()  
  52.     {  
  53.         try  
  54.         {  
  55.             return ((Integer)super.h.invoke(this, m0, null)).intValue();  
  56.         }  
  57.         catch(Error _ex) { }  
  58.         catch(Throwable throwable)  
  59.         {  
  60.             throw new UndeclaredThrowableException(throwable);  
  61.         }  
  62.     }  
  63.   
  64.     public final String toString()  
  65.     {  
  66.         try  
  67.         {  
  68.             return (String)super.h.invoke(this, m2, null);  
  69.         }  
  70.         catch(Error _ex) { }  
  71.         catch(Throwable throwable)  
  72.         {  
  73.             throw new UndeclaredThrowableException(throwable);  
  74.         }  
  75.     }  
  76.   
  77.     private static Method m1;  
  78.     private static Method m3;  
  79.     private static Method m0;  
  80.     private static Method m2;  
  81.   
  82.     // 在静态代码块中获取了4个方法:Object中的equals方法、UserService中的add方法、Object中的hashCode方法、Object中toString方法  
  83.     static   
  84.     {  
  85.         try  
  86.         {  
  87.             m1 = Class.forName("java.lang.Object").getMethod("equals"new Class[] {  
  88.                 Class.forName("java.lang.Object")  
  89.             });  
  90.             m3 = Class.forName("dynamic.proxy.UserService").getMethod("add"new Class[0]);  
  91.             m0 = Class.forName("java.lang.Object").getMethod("hashCode"new Class[0]);  
  92.             m2 = Class.forName("java.lang.Object").getMethod("toString"new Class[0]);  
  93.         }  
  94.         catch(NoSuchMethodException nosuchmethodexception)  
  95.         {  
  96.             throw new NoSuchMethodError(nosuchmethodexception.getMessage());  
  97.         }  
  98.         catch(ClassNotFoundException classnotfoundexception)  
  99.         {  
  100.             throw new NoClassDefFoundError(classnotfoundexception.getMessage());  
  101.         }  
  102.     }  
  103. }  


0 0