spring AOP 认知分享(先导篇 AspectJ、JDK_Proxy、CGLIB_Proxy)

我对spring的认识是从《Spring 技术内幕》开始的,这本书也是极力推荐给大家的;它采用的是自底而上的一个种方式来为我们一步一步解读spring的设计原理,很清晰的展示了spring运行时方法调用的过程,同时也有上层实现的设计原理剖析。

一、概述AOP

  1. AOP技术其实是解决了在面向对象设计上没有关联的几个类,却需要共同调用某一块代码逻辑的现象,最最常见的可就是日志的输出打印了。

  2. AOP的实现技术

AspectJ,源代码和字节码级别的编织器,需要使用AspectJ语言和Acj编译器。
AspectWerkz AOP框架,使用字节码动态编织器和XML配置
JBoss-AOP, 基于拦截器和元数据的AOP框架,运行在JBoss应用服务器上
BCEL, Java字节码操作类库
Javassist, Java字节码操作类库
注:摘自《Spring 技术内幕》。只做一个简单的了解,实现AOP的技术方案其实有很多种

二、AspectJ、JDK_Proxy、CGLIB_Proxy使用

注:项目搭建、代码示例使用IntelliJ IDEA;项目源码地址统一写在了结尾

1. AspectJ

首先需要在https://www.eclipse.org/aspectj/downloads.php官网下载aspectj.jar安装包;我这里下载的是aspectj-1.9.1.jar,使用命令java -jar aspectj-xxx.jar 一直下一步安装就好了。
这里要记下具体安装的目录,因为后面我们需要配置编译环境


环境配置好后我们就可以进行代码的编写了。创建一个HellowWorld_AspectJ_Main程序运行的入口

public class HellowWorld_AspectJ_Main {
    public static void main(String[] args) {
        System.out.println("mian method is print");
    }
}

再创建一个定位切面和执行逻辑的类HellowWorld_Pointcut

public aspect HellowWorld_Pointcut {

    pointcut helloWorld(): execution(* HellowWorld_AspectJ_Main.main(..));

    before(): helloWorld(){
        System.out.println("enter the HellowWorld_AspectJ_Main aop");

    }

}

直接运行就可以了


最后要指出的重点是编译后的两个类

HellowWorld_AspectJ_Main.class 反编译后

public class HellowWorld_AspectJ_Main {
    public HellowWorld_AspectJ_Main() {
    }

    public static void main(String[] args) {
        HellowWorld_Pointcut.aspectOf().ajc$before$HellowWorld_Pointcut$1$4303d2e1(); //编译后自动添加的代码
        System.out.println("mian method is print");
    }
}

HellowWorld_Pointcut.class 反编译后

import org.aspectj.lang.NoAspectBoundException;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class HellowWorld_Pointcut {
    static {
        try {
            ajc$postClinit();
        } catch (Throwable var1) {
            ajc$initFailureCause = var1;
        }

    }

    public HellowWorld_Pointcut() {
    }

    @Before(
        value = "helloWorld()",
        argNames = ""
    )
    public void ajc$before$HellowWorld_Pointcut$1$4303d2e1() {
        System.out.println("enter the HellowWorld_AspectJ_Main aop");
    }

    public static HellowWorld_Pointcut aspectOf() {
        if (ajc$perSingletonInstance == null) {
            throw new NoAspectBoundException("HellowWorld_Pointcut", ajc$initFailureCause);
        } else {
            return ajc$perSingletonInstance;
        }
    }

    public static boolean hasAspect() {
        return ajc$perSingletonInstance != null;
    }
}

2. JDK_Proxy

准备三个类,ProxyInstanceJDK定义方法的接口、ProxyInstanceJDKImpl实现类、ProxyHandlerJDK回调类,这三个类我都放在了main所在的类下面,所以没有用public修饰。

interface ProxyInstanceJDK {
    void print();
}

class ProxyInstanceJDKImpl implements ProxyInstanceJDK {
    @Override
    public void print() {
        System.out.println("target jdk class");
    }

}

class ProxyHandlerJDK implements InvocationHandler {

    private ProxyInstanceJDK targetClass;

    public ProxyHandlerJDK(ProxyInstanceJDK targetClass) {
        this.targetClass = targetClass;
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

        System.out.println("enter the jdk proxy invoke, proxy className is " + proxy.getClass().getSimpleName());

        return method.invoke(targetClass, args);
    }
}

main方法调用

    public static void main(String[] args) throws Exception {
        
        proxyJdk(); 
//        printJDKProxyClassByte();
//        proxyCglib();
    }

具体生成代理类的过程可以查看java.lang.reflect.Proxy类的源码。我这里把最后动态生成代理类的字节码输出在了一个**.class文件中,反编译后就可以看到生成的代理类了。

  /**
     * 可以将生成好的代理类字节码打印出来
     * @throws Exception
     */
    public static void printJDKProxyClassByte() throws Exception {

        byte[] classFile = ProxyGenerator.generateProxyClass("$ProxyMyTest", ProxyInstanceJDKImpl.class.getInterfaces());

        FileOutputStream fos = new FileOutputStream(new File("***/example.class"));

        fos.write(classFile);
        fos.flush();
        fos.close();
    }

反编译后代理类的具体实现

import com.programmatic.springprogrammatic.ProxyInstanceJDK;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.lang.reflect.UndeclaredThrowableException;

public final class $ProxyMyTest extends Proxy implements ProxyInstanceJDK {
    private static Method m1;
    private static Method m3;
    private static Method m2;
    private static Method m0;

    public $ProxyMyTest(InvocationHandler var1) throws  {
        super(var1);
    }

    public final boolean equals(Object var1) throws  {
        try {
            return (Boolean)super.h.invoke(this, m1, new Object[]{var1});
        } catch (RuntimeException | Error var3) {
            throw var3;
        } catch (Throwable var4) {
            throw new UndeclaredThrowableException(var4);
        }
    }

    public final void print() throws  {
        try {
            super.h.invoke(this, m3, (Object[])null);
        } catch (RuntimeException | Error var2) {
            throw var2;
        } catch (Throwable var3) {
            throw new UndeclaredThrowableException(var3);
        }
    }

    public final String toString() throws  {
        try {
            return (String)super.h.invoke(this, m2, (Object[])null);
        } catch (RuntimeException | Error var2) {
            throw var2;
        } catch (Throwable var3) {
            throw new UndeclaredThrowableException(var3);
        }
    }

    public final int hashCode() throws  {
        try {
            return (Integer)super.h.invoke(this, m0, (Object[])null);
        } catch (RuntimeException | Error var2) {
            throw var2;
        } catch (Throwable var3) {
            throw new UndeclaredThrowableException(var3);
        }
    }

    static {
        try {
            m1 = Class.forName("java.lang.Object").getMethod("equals", Class.forName("java.lang.Object"));
            m3 = Class.forName("com.programmatic.springprogrammatic.ProxyInstanceJDK").getMethod("print");
            m2 = Class.forName("java.lang.Object").getMethod("toString");
            m0 = Class.forName("java.lang.Object").getMethod("hashCode");
        } catch (NoSuchMethodException var2) {
            throw new NoSuchMethodError(var2.getMessage());
        } catch (ClassNotFoundException var3) {
            throw new NoClassDefFoundError(var3.getMessage());
        }
    }
}

3. CGLIB_Proxy

只需要准备一个具体的方法实现类ProxyInstanceCglib

class ProxyInstanceCglib {
    public void print() {
        System.out.println("target cglib class");
    }
}

生成代理类

  public static void proxyCglib() {

        Enhancer enhancer = new Enhancer();

        enhancer.setSuperclass(ProxyInstanceCglib.class);
        enhancer.setCallback(((MethodInterceptor) (o, method, objects, methodProxy) -> {
            System.out.println("enter the cglib proxy invoke");
            return methodProxy.invokeSuper(o, objects);
        }));

        ProxyInstanceCglib instanceCglib = (ProxyInstanceCglib) enhancer.create();
        instanceCglib.print();
        System.out.println(instanceCglib.getClass().getSimpleName());

    }

cglib没有获取代理类的字节码的类方法(!!确实没找到!!),不过可以通过设置System.setProperty(DebuggingClassWriter.DEBUG_LOCATION_PROPERTY, "**/src/main/resources/templates");将运行期间所有动态创建的类打印出来。其中ProxyInstanceCglib$$EnhancerByCGLIB$$366568d是cglib是我们生成的代理类,源码有点长就不贴出来了,我把它上传到了github上,大家有兴趣的可以看一下。

三、结语

把这几种常用的AOP技术操作运行起来,会对我们理解spring AOP的时候起到一个支撑的作用。虽然并没有深入的研究,但或多或少的解决了“从哪里来”的问题!


aspect github项目地址:https://github.com/lotusfan/aspectj
proxy github项目地址:https://github.com/lotusfan/spring-programmatic
使用到的类:com.programmatic.springprogrammatic.ProxyTest
Cglib生成的代理类:resources/templates/com/programmatic.springprogrammatic/ProxyInstanceCglib$$EnhancerByCGLIB$$366568d

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • 说明:本文主要内容来自慕课网。配合视频食用口味更佳。主要是顺着已经学习的视频顺序总结一遍,以深化理解和方便日后复习...
    stoneyang94阅读 852评论 3 5
  • 本文主要讲实现AOP的 代理模式原理,以及静态代理,动态代理的区别和具体实现。 对SpringAOP的概念和使用,...
    _Zy阅读 749评论 0 1
  • 在理解Spring AOP以及理清它与Aspect和cglib之间关系之前,有很多基础工作要做,比如,先对代理模式...
    maxwellyue阅读 1,217评论 0 5
  • 我上小学的时候,挨过很多次打。每次打的都很疼痛。肉体上的疼痛,我躲不了,忍忍也就过了。可是他的冷言呵斥还有那些否定...
    苏玛05阅读 202评论 0 0