快速业务通道

Spring源代码解析(七):Spring AOP中对拦截器调用的实现 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-07-04
Invocation.        // 如果没有设定拦截器,那么我们就直接调用目标的对应方法        if (chain.isEmpty()) {          // We can skip creating a MethodInvocation: just invoke the target directly          // Note that the final invoker must be an InvokerInterceptor so we know it does          // nothing but a reflective operation on the target, and no hot swapping or fancy proxying          retVal = AopUtils.invokeJoinpointUsingReflection(target, method, args);        }        else {          // We need to create a method invocation...          // invocation = advised.getMethodInvocationFactory ().getMethodInvocation(          //     proxy, method, targetClass, target, args, chain, advised);          // 如果有拦截器的设定,那么需要调用拦截器之后才调用目标对象 的相应方法          // 这里通过构造一个ReflectiveMethodInvocation来实现,下面我 们会看这个ReflectiveMethodInvocation类          invocation = new ReflectiveMethodInvocation(              proxy, target, method, args, targetClass, chain);          // proceed to the joinpoint through the interceptor chain          // 这里通过ReflectiveMethodInvocation来调用拦截器链和相应的 目标方法          retVal = invocation.proceed();        }        // massage return value if necessary        if (retVal != null && retVal == target && method.getReturnType().isInstance(proxy)) {          // Special case: it returned "this" and the return type of the method is type-compatible          // Note that we can''t help if the target sets          // a reference to itself in another returned object.          retVal = proxy;        }        return retVal;      }      finally {        if (target != null && !targetSource.isStatic()) {          // must have come from TargetSource          targetSource.releaseTarget(target);        }        if (setProxyContext) {          // restore old proxy          AopContext.setCurrentProxy(oldProxy);        }      }    }

Spring源代码解析(七):Spring AOP中对拦截器调用的实现(2)

时间:2011-03-29 javaeye jiwenke

我们先看看目标对象方法的调用,这里是通过AopUtils的方法调用 - 使用反射机制来 对目标对象的方法进行调用:

Java代码

public static Object invokeJoinpointUsingReflection(Object target, Method method, Object[] args)      throws Throwable {      // Use reflection to invoke the method.      // 利用放射机制得到相应的方法,并且调用invoke      try {        if (!Modifier.isPublic(method.getModifiers()) ||            !Modifier.isPublic(method.getDeclaringClass ().getModifiers())) {          method.setAccessible(true);        }        return method.invoke(target, args);      }      catch (InvocationTargetException ex) {   

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号