代理模式是java中最常用的设计模式之一,尤其是在spring框架中广泛应用。对于java的代理模式,一般可分为:静态代理、动态代理、以及cglib实现动态代理。
对于上述三种代理模式,分别进行说明。
1.静态代理
静态代理其实就是在程序运行之前,提前写好被代理方法的代理类,编译后运行。在程序运行之前,class已经存在。
下面我们实现一个静态代理demo:
静态代理
定义一个接口target
1
2
3
4
5
6
|
package com.test.proxy; public interface target { public string execute(); } |
targetimpl 实现接口target
1
2
3
4
5
6
7
8
9
10
|
package com.test.proxy; public class targetimpl implements target { @override public string execute() { system.out.println( "targetimpl execute!" ); return "execute" ; } } |
代理类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package com.test.proxy; public class proxy implements target{ private target target; public proxy(target target) { this .target = target; } @override public string execute() { system.out.println( "perprocess" ); string result = this .target.execute(); system.out.println( "postprocess" ); return result; } } |
测试类:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.test.proxy; public class proxytest { public static void main(string[] args) { target target = new targetimpl(); proxy p = new proxy(target); string result = p.execute(); system.out.println(result); } } |
运行结果:
1
2
3
4
|
perprocess targetimpl execute! postprocess execute |
静态代理需要针对被代理的方法提前写好代理类,如果被代理的方法非常多则需要编写很多代码,因此,对于上述缺点,通过动态代理的方式进行了弥补。
2.动态代理
动态代理主要是通过反射机制,在运行时动态生成所需代理的class.
动态代理
接口
1
2
3
4
5
6
|
package com.test.dynamic; public interface target { public string execute(); } |
实现类
1
2
3
4
5
6
7
8
9
10
|
package com.test.dynamic; public class targetimpl implements target { @override public string execute() { system.out.println( "targetimpl execute!" ); return "execute" ; } } |
代理类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package com.test.dynamic; import java.lang.reflect.invocationhandler; import java.lang.reflect.method; public class dynamicproxyhandler implements invocationhandler{ private target target; public dynamicproxyhandler(target target) { this .target = target; } @override public object invoke(object proxy, method method, object[] args) throws throwable { system.out.println( "========before==========" ); object result = method.invoke(target,args); system.out.println( "========after===========" ); return result; } } |
测试类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.test.dynamic; import java.lang.reflect.proxy; public class dynamicproxytest { public static void main(string[] args) { target target = new targetimpl(); dynamicproxyhandler handler = new dynamicproxyhandler(target); target proxysubject = (target) proxy.newproxyinstance(targetimpl. class .getclassloader(),targetimpl. class .getinterfaces(),handler); string result = proxysubject.execute(); system.out.println(result); } } |
运行结果:
1
2
3
4
|
========before========== targetimpl execute! ========after=========== execute |
无论是动态代理还是静态带领,都需要定义接口,然后才能实现代理功能。这同样存在局限性,因此,为了解决这个问题,出现了第三种代理方式:cglib代理。
3.cglib代理
cglib采用了非常底层的字节码技术,其原理是通过字节码技术为一个类创建子类,并在子类中采用方法拦截的技术拦截所有父类方法的调用,顺势织入横切逻辑。jdk动态代理与cglib动态代理均是实现spring aop的基础。
cglib动态代理
目标类
1
2
3
4
5
6
7
8
9
10
|
package com.test.cglib; public class target { public string execute() { string message = "-----------test------------" ; system.out.println(message); return message; } } |
通用代理类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.test.cglib; import net.sf.cglib.proxy.methodinterceptor; import net.sf.cglib.proxy.methodproxy; import java.lang.reflect.method; public class mymethodinterceptor implements methodinterceptor{ @override public object intercept(object obj, method method, object[] args, methodproxy proxy) throws throwable { system.out.println( ">>>>methodinterceptor start..." ); object result = proxy.invokesuper(obj,args); system.out.println( ">>>>methodinterceptor ending..." ); return "result" ; } } |
测试类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package com.test.cglib; import net.sf.cglib.proxy.enhancer; public class cglibtest { public static void main(string ... args) { system.out.println( "***************" ); target target = new target(); cglibtest test = new cglibtest(); target proxytarget = (target) test.createproxy(target. class ); string res = proxytarget.execute(); system.out.println(res); } public object createproxy( class targetclass) { enhancer enhancer = new enhancer(); enhancer.setsuperclass(targetclass); enhancer.setcallback( new mymethodinterceptor()); return enhancer.create(); } } |
执行结果:
1
2
3
4
5
|
*************** >>>>methodinterceptor start... -----------test------------ >>>>methodinterceptor ending... result |
代理对象的生成过程由enhancer类实现,大概步骤如下:
1、生成代理类class的二进制字节码;
2、通过class.forname加载二进制字节码,生成class对象;
3、通过反射机制获取实例构造,并初始化代理类对象。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/37d0ac9233b9