spring源代码解析(七):spring aop中对拦截器调用的实现

spring源代码解析(七):spring aop中对拦截器调用的实现

ID:15308796

大小:91.00 KB

页数:5页

时间:2018-08-02

spring源代码解析(七):spring aop中对拦截器调用的实现_第1页
spring源代码解析(七):spring aop中对拦截器调用的实现_第2页
spring源代码解析(七):spring aop中对拦截器调用的实现_第3页
spring源代码解析(七):spring aop中对拦截器调用的实现_第4页
spring源代码解析(七):spring aop中对拦截器调用的实现_第5页
资源描述:

《spring源代码解析(七):spring aop中对拦截器调用的实现》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、前面我们分析了SpringAOP实现中得到Proxy对象的过程,下面我们看看在SpringAOP中拦截器链是怎样被调用的,也就是Proxy模式是怎样起作用的,或者说Spring是怎样为我们提供AOP功能的;在JdkDynamicAopProxy中生成Proxy对象的时候: Java代码 1.return Proxy.newProxyInstance(classLoader, proxiedInterfaces, this);  returnProxy.newProxyInstance(classLoader,proxiedInterfaces,this);这里的this参

2、数对应的是InvocationHandler对象,这里我们的JdkDynamicAopProxy实现了这个接口,也就是说当Proxy对象的函数被调用的时候,这个InvocationHandler的invoke方法会被作为回调函数调用,下面我们看看这个方法的实现: Java代码 1.public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {  2.    MethodInvocation invocation = null;  3.    Object oldProx

3、y = null;  4.    boolean setProxyContext = false;  5.  6.    TargetSource targetSource = this.advised.targetSource;  7.    Class targetClass = null;  8.    Object target = null;  9.  10.    try {  11.        // Try special rules for equals() method and implementation of the  12.        //

4、 Advised AOP configuration interface.  13.  14.        if (!this.equalsDefined && AopUtils.isEqualsMethod(method)) {  15.            // What if equals throws exception!?  16.            // This class implements the equals(Object) method itself.  17.            return equals(args[0]) ? Boo

5、lean.TRUE : Boolean.FALSE;  18.        }  19.        if (!this.hashCodeDefined && AopUtils.isHashCodeMethod(method)) {  20.            // This class implements the hashCode() method itself.  21.            return new Integer(hashCode());  22.        }  23.        if (Advised.class == meth

6、od.getDeclaringClass()) {  24.            // service invocations on ProxyConfig with the proxy config  25.            return AopUtils.invokeJoinpointUsingReflection(this.advised, method, args);  26.        }  27.  28.        Object retVal = null;  29.  30.        if (this.advised.exposePr

7、oxy) {  1.            // make invocation available if necessary  2.            oldProxy = AopContext.setCurrentProxy(proxy);  3.            setProxyContext = true;  4.        }  5.  6.        // May be null. Get as late as possible to minimize the time 

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。