动态代理: 通过反射的方式调用真实对象的方法
静态代理: 真实对象显式地方法调用
这样理解还是很抽象,还是具体实例代码容易理解。
1 接口类
package com.example.javalearnproject.reflectbasictest.proxy;
public interface Subject {
public void rent();
public void hello(String str);
}
2. 真实对象
package com.example.javalearnproject.reflectbasictest.proxy;
public class RealSubject implements Subject
{
@Override
public void rent()
{
System.out.println("I want to rent my house");
}
@Override
public void hello(String str)
{
System.out.println("hello: " + str);
}
}
3. 动态代理对象(InvocationHandler的实现类)
package com.example.javalearnproject.reflectbasictest.proxy;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
public class DynamicProxy implements InvocationHandler {
// 这个就是我们要代理的真实对象
private Object subject;
// 构造方法,给我们要代理的真实对象赋初值
public DynamicProxy(Object subject)
{
this.subject = subject;
}
@Override
public Object invoke(Object object, Method method, Object[] args) throws Throwable {
// 在代理真实对象前我们可以添加一些自己的操作
System.out.println("before rent house");
System.out.println("Method:" + method);
// 当代理对象调用真实对象的方法时,其会自动的跳转到代理对象关联的handler对象的invoke方法来进行调用
method.invoke(subject, args);
// 在代理真实对象后我们也可以添加一些自己的操作
System.out.println("after rent house");
return null;
}
}
4 客户端调用测试类
package com.example.javalearnproject.reflectbasictest.proxy;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
public class Client {
public static void main(String[] args) {
System.out.println(">>>>>>> Proxy test begin <<<<<<<<");
// 我们要代理的真实对象
Subject realSubject = new RealSubject();
// 我们要代理哪个真实对象,就将该对象传进去,最后是通过该真实对象来调用其方法的
InvocationHandler handler = new DynamicProxy(realSubject);
/*
* 通过Proxy的newProxyInstance方法来创建我们的代理对象,我们来看看其三个参数
* 第一个参数 handler.getClass().getClassLoader() ,我们这里使用handler这个类的ClassLoader对象来加载我们的代理对象
* 第二个参数realSubject.getClass().getInterfaces(),我们这里为代理对象提供的接口是真实对象所实行的接口,表示我要代理的是该真实对象,这样我就能调用这组接口中的方法了
* 第三个参数handler, 我们这里将这个代理对象关联到了上方的 InvocationHandler 这个对象上
*/
Subject subject = (Subject) Proxy.newProxyInstance(handler.getClass().getClassLoader(), realSubject
.getClass().getInterfaces(), handler);
System.out.println(subject.getClass().getName());
subject.rent();
subject.hello("world");
System.out.println(">>>>>>> Proxy test end <<<<<<<<");
}
}
5 输出
>>>>>>> Proxy test begin <<<<<<<<
com.sun.proxy.$Proxy0
before rent house
Method:public abstract void com.example.javalearnproject.reflectbasictest.proxy.Subject.rent()
I want to rent my house
after rent house
before rent house
Method:public abstract void com.example.javalearnproject.reflectbasictest.proxy.Subject.hello(java.lang.String)
hello: world
after rent house
>>>>>>> Proxy test end <<<<<<<<
参考: InvocationHandler和Proxy(Class)的动态代理机制详解 - 天涯海角路 - 博客园 (cnblogs.com)
网友评论