首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

反照实现 AOP 动态代理模式(2)

2012-09-19 
反射实现 AOP 动态代理模式(2)上面类中出现的Logger类和Level枚举还是和上一上例子的实现是一样的.这里就

反射实现 AOP 动态代理模式(2)

上面类中出现的Logger类和Level枚举还是和上一上例子的实现是一样的.这里就不贴出代码了.

让我们写一个Test类去测试一下.代码如下:
Test.java

?1反照实现 AOP 动态代理模式(2)package?sinosoft.dj.aop.proxyaop;
?2反照实现 AOP 动态代理模式(2)
?3反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)public?class?Test?反照实现 AOP 动态代理模式(2){
?4反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?static?void?main(String[]?args)?反照实现 AOP 动态代理模式(2){
?5反照实现 AOP 动态代理模式(2)????????IHello?hello?=?(IHello)new?DynaProxyHello().bind(new?Hello());
?6反照实现 AOP 动态代理模式(2)????????hello.sayGoogBye("Double?J");
?7反照实现 AOP 动态代理模式(2)????????hello.sayHello("Double?J");
?8反照实现 AOP 动态代理模式(2)????????
?9反照实现 AOP 动态代理模式(2)????}
10反照实现 AOP 动态代理模式(2)}
11反照实现 AOP 动态代理模式(2)


运行输出的结果如下:

反照实现 AOP 动态代理模式(2)Tue?Mar?04?21:24:03?CST?2008?sayGoogBye?Method?end?反照实现 AOP 动态代理模式(2).
反照实现 AOP 动态代理模式(2)Double?J?GoodBye!
反照实现 AOP 动态代理模式(2)2008-3-4?21:24:03?sayGoogBye?Method?Start!
反照实现 AOP 动态代理模式(2)Tue?Mar?04?21:24:03?CST?2008?sayHello?Method?end?反照实现 AOP 动态代理模式(2).
反照实现 AOP 动态代理模式(2)Hello?Double?J
反照实现 AOP 动态代理模式(2)2008-3-4?21:24:03?sayHello?Method?Start!


由于线程的关系,第二个方法的开始出现在第一个方法的结束之前.这不是我们所关注的!
从上面的例子我们看出.只要你是采用面向接口编程,那么,你的任何对象的方法执行之前要加上记录日志的操作都是可以的.他(DynaPoxyHello)自动去代理执行被代理对象(Hello)中的每一个方法,一个java.lang.reflect.InvocationHandler接口就把我们的代理对象和被代理对象解藕了.但是,我们又发现还有一个问题,这个DynaPoxyHello对象只能跟我们去在方法前后加上日志记录的操作.我们能不能把DynaPoxyHello对象和日志操作对象(Logger)解藕呢?
结果是肯定的.让我们来分析一下我们的需求.
我们要在被代理对象的方法前面或者后面去加上日志操作代码(或者是其它操作的代码),
那么,我们可以抽象出一个接口,这个接口里就只有两个方法,一个是在被代理对象要执行方法之前执行的方法,我们取名为start,第二个方法就是在被代理对象执行方法之后执行的方法,我们取名为end .接口定义如下 :

?1反照实现 AOP 动态代理模式(2)package?sinosoft.dj.aop.proxyaop;
?2反照实现 AOP 动态代理模式(2)
?3反照实现 AOP 动态代理模式(2)import?java.lang.reflect.Method;
?4反照实现 AOP 动态代理模式(2)
?5反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)public?interface?IOperation?反照实现 AOP 动态代理模式(2){
?6反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????/**?*//**
?7反照实现 AOP 动态代理模式(2)?????*?方法执行之前的操作
?8反照实现 AOP 动态代理模式(2)?????*?@param?method
?9反照实现 AOP 动态代理模式(2)?????*/
10反照实现 AOP 动态代理模式(2)????void?start(Method?method);
11反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????/**?*//**
12反照实现 AOP 动态代理模式(2)?????*?方法执行之后的操作
13反照实现 AOP 动态代理模式(2)?????*?@param?method
14反照实现 AOP 动态代理模式(2)?????*/
15反照实现 AOP 动态代理模式(2)????void?end(Method?method);
16反照实现 AOP 动态代理模式(2)}
17反照实现 AOP 动态代理模式(2)


我们去写一个实现上面接口的类.我们把作他真正的操作者,如下面是日志操作者的一个类:
LoggerOperation.java

反照实现 AOP 动态代理模式(2)package?sinosoft.dj.aop.proxyaop;
反照实现 AOP 动态代理模式(2)
反照实现 AOP 动态代理模式(2)import?java.lang.reflect.Method;
反照实现 AOP 动态代理模式(2)
反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)public?class?LoggerOperation?implements?IOperation?反照实现 AOP 动态代理模式(2){
反照实现 AOP 动态代理模式(2)
反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?void?end(Method?method)?反照实现 AOP 动态代理模式(2){
反照实现 AOP 动态代理模式(2)????????Logger.logging(Level.DEBUGE,?method.getName()?+?"?Method?end?反照实现 AOP 动态代理模式(2).");
反照实现 AOP 动态代理模式(2)????}
反照实现 AOP 动态代理模式(2)
反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?void?start(Method?method)?反照实现 AOP 动态代理模式(2){
反照实现 AOP 动态代理模式(2)????????Logger.logging(Level.INFO,?method.getName()?+?"?Method?Start!");
反照实现 AOP 动态代理模式(2)????}
反照实现 AOP 动态代理模式(2)
反照实现 AOP 动态代理模式(2)}
反照实现 AOP 动态代理模式(2)


然后我们要改一下代理对象DynaProxyHello中的代码.如下:

?1反照实现 AOP 动态代理模式(2)package?sinosoft.dj.aop.proxyaop;
?2反照实现 AOP 动态代理模式(2)
?3反照实现 AOP 动态代理模式(2)import?java.lang.reflect.InvocationHandler;
?4反照实现 AOP 动态代理模式(2)import?java.lang.reflect.Method;
?5反照实现 AOP 动态代理模式(2)import?java.lang.reflect.Proxy;
?6反照实现 AOP 动态代理模式(2)
?7反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)public?class?DynaProxyHello?implements?InvocationHandler?反照实现 AOP 动态代理模式(2){
?8反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????/**?*//**
?9反照实现 AOP 动态代理模式(2)?????*?操作者
10反照实现 AOP 动态代理模式(2)?????*/
11反照实现 AOP 动态代理模式(2)????private?Object?proxy;
12反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????/**?*//**
13反照实现 AOP 动态代理模式(2)?????*?要处理的对象(也就是我们要在方法的前后加上业务逻辑的对象,如例子中的Hello)
14反照实现 AOP 动态代理模式(2)?????*/
15反照实现 AOP 动态代理模式(2)????private?Object?delegate;
16反照实现 AOP 动态代理模式(2)
17反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????/**?*//**
18反照实现 AOP 动态代理模式(2)?????*?动态生成方法被处理过后的对象?(写法固定)
19反照实现 AOP 动态代理模式(2)?????*?
20反照实现 AOP 动态代理模式(2)?????*?@param?delegate
21反照实现 AOP 动态代理模式(2)?????*?@param?proxy
22反照实现 AOP 动态代理模式(2)?????*?@return
23反照实现 AOP 动态代理模式(2)?????*/
24反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?Object?bind(Object?delegate,Object?proxy)?反照实现 AOP 动态代理模式(2){
25反照实现 AOP 动态代理模式(2)????????
26反照实现 AOP 动态代理模式(2)????????this.proxy?=?proxy;
27反照实现 AOP 动态代理模式(2)????????this.delegate?=?delegate;
28反照实现 AOP 动态代理模式(2)????????return?Proxy.newProxyInstance(
29反照实现 AOP 动态代理模式(2)????????????????this.delegate.getClass().getClassLoader(),?this.delegate
30反照实现 AOP 动态代理模式(2)????????????????????????.getClass().getInterfaces(),?this);
31反照实现 AOP 动态代理模式(2)????}
32反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????/**?*//**
33反照实现 AOP 动态代理模式(2)?????*?要处理的对象中的每个方法会被此方法送去JVM调用,也就是说,要处理的对象的方法只能通过此方法调用
34反照实现 AOP 动态代理模式(2)?????*?此方法是动态的,不是手动调用的
35反照实现 AOP 动态代理模式(2)?????*/
36反照实现 AOP 动态代理模式(2)????public?Object?invoke(Object?proxy,?Method?method,?Object[]?args)
37反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????????throws?Throwable?反照实现 AOP 动态代理模式(2){
38反照实现 AOP 动态代理模式(2)????????Object?result?=?null;
39反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????try?反照实现 AOP 动态代理模式(2){
40反照实现 AOP 动态代理模式(2)????????????//反射得到操作者的实例
41反照实现 AOP 动态代理模式(2)????????????Class?clazz?=?this.proxy.getClass();
42反照实现 AOP 动态代理模式(2)????????????//反射得到操作者的Start方法
43反照实现 AOP 动态代理模式(2)????????????Method?start?=?clazz.getDeclaredMethod("start",
44反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????????????????new?Class[]?反照实现 AOP 动态代理模式(2){?Method.class?});
45反照实现 AOP 动态代理模式(2)????????????//反射执行start方法
46反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????????start.invoke(this.proxy,?new?Object[]?反照实现 AOP 动态代理模式(2){?method?});
47反照实现 AOP 动态代理模式(2)????????????//执行要处理对象的原本方法
48反照实现 AOP 动态代理模式(2)????????????result?=?method.invoke(this.delegate,?args);
49反照实现 AOP 动态代理模式(2)//????????????反射得到操作者的end方法
50反照实现 AOP 动态代理模式(2)????????????Method?end?=?clazz.getDeclaredMethod("end",
51反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????????????????new?Class[]?反照实现 AOP 动态代理模式(2){?Method.class?});
52反照实现 AOP 动态代理模式(2)//????????????反射执行end方法
53反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????????end.invoke(this.proxy,?new?Object[]?反照实现 AOP 动态代理模式(2){?method?});
54反照实现 AOP 动态代理模式(2)
55反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????????}?catch?(Exception?e)?反照实现 AOP 动态代理模式(2){
56反照实现 AOP 动态代理模式(2)????????????e.printStackTrace();
57反照实现 AOP 动态代理模式(2)????????}
58反照实现 AOP 动态代理模式(2)????????return?result;
59反照实现 AOP 动态代理模式(2)????}
60反照实现 AOP 动态代理模式(2)
61反照实现 AOP 动态代理模式(2)}
62反照实现 AOP 动态代理模式(2)


然后我们把Test.java中的代码改一下.测试一下:

反照实现 AOP 动态代理模式(2)package?sinosoft.dj.aop.proxyaop;
反照实现 AOP 动态代理模式(2)
反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)public?class?Test?反照实现 AOP 动态代理模式(2){
反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?static?void?main(String[]?args)?反照实现 AOP 动态代理模式(2){
反照实现 AOP 动态代理模式(2)????????IHello?hello?=?(IHello)new?DynaProxyHello().bind(new?Hello(),new?LoggerOperation());
反照实现 AOP 动态代理模式(2)????????hello.sayGoogBye("Double?J");
反照实现 AOP 动态代理模式(2)????????hello.sayHello("Double?J");
反照实现 AOP 动态代理模式(2)????????
反照实现 AOP 动态代理模式(2)????}
反照实现 AOP 动态代理模式(2)}
反照实现 AOP 动态代理模式(2)

结果还是一样的吧.

如果你想在每个方法之前加上日志记录,而不在方法后加上日志记录.你就把LoggerOperation类改成如下:

?1反照实现 AOP 动态代理模式(2)package?sinosoft.dj.aop.proxyaop;
?2反照实现 AOP 动态代理模式(2)
?3反照实现 AOP 动态代理模式(2)import?java.lang.reflect.Method;
?4反照实现 AOP 动态代理模式(2)
?5反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)public?class?LoggerOperation?implements?IOperation?反照实现 AOP 动态代理模式(2){
?6反照实现 AOP 动态代理模式(2)
?7反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?void?end(Method?method)?反照实现 AOP 动态代理模式(2){
?8反照实现 AOP 动态代理模式(2)????????//Logger.logging(Level.DEBUGE,?method.getName()?+?"?Method?end?反照实现 AOP 动态代理模式(2).");
?9反照实现 AOP 动态代理模式(2)????}
10反照实现 AOP 动态代理模式(2)
11反照实现 AOP 动态代理模式(2)反照实现 AOP 动态代理模式(2)????public?void?start(Method?method)?反照实现 AOP 动态代理模式(2){
12反照实现 AOP 动态代理模式(2)????????Logger.logging(Level.INFO,?method.getName()?+?"?Method?Start!");
13反照实现 AOP 动态代理模式(2)????}
14反照实现 AOP 动态代理模式(2)
15反照实现 AOP 动态代理模式(2)}
16反照实现 AOP 动态代理模式(2)


运行一下.你就会发现,每个方法之后没有记录日志了. 这样,我们就把代理者和操作者解藕了!

下面留一个问题给大家,如果我们不想让所有方法都被日志记录,我们应该怎么去解藕呢.?
我的想法是在代理对象的public Object invoke(Object proxy, Method method, Object[] args)方法里面加上个if(),对传进来的method的名字进行判断,判断的条件存在XML里面.这样我们就可以配置文件时行解藕了.如果有兴趣的朋友可以把操作者,被代理者,都通过配置文件进行配置 ,那么就可以写一个简单的SpringAOP框架了.

热点排行