AOP 面向切面编程

简介

AOP的原理:基于代理思想,对原来的目标对象,创建代理对象。在不修改原对象代码情况下,通过代理对象,调用增加功能的代码,对原有业务方法进行增强。

应用场景

  • 记录日志
  • 监控方法运行时间
  • 权限控制
  • 缓存优化
  • 事务管理

Spring AOP两种编程方式

  • Spring 1.2 开始支持AOP编程 (传统SpringAOP 编程)
  • Spring 2.0 之后支持第三方 AOP框架(AspectJ )
AOP 编程底层实现机制

Spring AOP 是基于动态代理的,两种方式

  • JDK 动态代理
  • CGLIB 动态代理

动态代理和静态代理的区别?

动态代理:在虚拟机内部,运行的时候,动态生成代理类(运行时生成,runtime生成) ,并不是真正存在的类,Proxy$$(Proxy$$Customer)

静态代理:存在代理类

JDK 动态代理 (对象必须有接口)
  • 必须对接口生成代理

  • 采用Proxy对象,通过newProxyInstance方法为目标创建代理对象

    该方法接收三个参数 :目标对象类加载器、目标对象实现的接口、代理后的处理程序 InvocationHandler

    使用 Proxy类提供 newProxyInstance 方法对目标对象接口进行代理

  • 实现 InvocationHandler 接口中 invoke方法,在目标对象每个方法调用时,都会执行invoke

代码

JdkProxyFactory.java

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class JdkProxyFactory implements InvocationHandler {

    private Object target;

    //构造注入
    public JdkProxyFactory(Object target) {
        this.target = target;
    }

    public Object getProxyObject() {

        //匿名内部内
       /* Object proxyObject = Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass()
                .getInterfaces(), new InvocationHandler() {
            @Override
            public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                //....
                return null;
            }
        });
        return proxyObject;*/

        /**
         * loader - 定义代理类的类加载器
         * interfaces - 目标对象的所有接口(原因:jdk要根据目标的接口来生成子对象)
         * h - 回调函数,代理对象要调用的方法。(可以写增强的代码)
         *
         */
        return Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(),this);
        //this代表当前实现类的对象, 实际上就相当于  new JdkProxyFactory()
    }

    /**
     * @param proxy  代理对象(慎用,会递归)
     * @param method 目标对象原来的方法
     * @param args   目标对象的参数
     *

     * @return Object方法调用的返回值, 不是 method.incoke()这个返回值
     * @throws Throwable
     */
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

        if ("save".equals(method.getName())) {
            //增强代码
            writeLog();
            //执行原来的代码
            return method.invoke(target, args);
        }
        return method.invoke(target, args);
    }

    private static void writeLog() {
        System.out.println("增强了写日志方法...");
    }

  /*
    //内部内
    private class MyInvocationHandler implements InvocationHandler{

        @Override
        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            //.....
            return null;
        }
    }*/
}
Cglib 动态代理 (不需要接口也可以代理)

Cglib的引入为了解决类的直接代理问题(生成代理子类),**不需要接口也可以代理 **

代码

pom.xml

<dependencies>
    <!--Spring核心容器-->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>5.0.2.RELEASE</version>
    </dependency>
    <!--SpringAOP相关的坐标-->
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.7</version>
    </dependency>
    
    <!--Spring整合单元测试-->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>5.0.2.RELEASE</version>
    </dependency>
    <!--单元测试-->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

CglibProxyFactory.java

import org.springframework.cglib.proxy.Callback;
import org.springframework.cglib.proxy.Enhancer;
import org.springframework.cglib.proxy.MethodInterceptor;
import org.springframework.cglib.proxy.MethodProxy;

import java.lang.reflect.Method;

public class CglibProxyFactory implements MethodInterceptor {

    private Object target;

    public CglibProxyFactory(Object target) {
        this.target = target;
    }

    public Object getProxyObject() {

        //实例化Cglib增强代理器
        Enhancer enhancer = new Enhancer();
        //2.在增强器上设置相应的属性
        // 设置目标的类,通过目标对象生成代理的子对象
        enhancer.setSuperclass(target.getClass());
        //设置回调方法的函数
        enhancer.setCallback(this);
        //通过增强器,获取带代理对象
        Object proxyObject = enhancer.create();

        return proxyObject;
    }

    /**
     * @param proxy       代理子对象
     * @param method      目标的方法对象
     * @param agrs        目标的方法的参数
     * @param methodProxy 代理对象的方法(已经被增强过的)
     * @return
     * @throws Throwable
     */
    @Override
    public Object intercept(Object proxy, Method method, Object[] agrs, MethodProxy methodProxy) throws Throwable {

        //增强代码
        System.out.println("增强了写日志...");
        //执行目标对象之前的代码
        Object object = method.invoke(target, agrs);
        return object;

    }
}

jdk:基于接口的代理,会生成目标对象的接口类型的子对象。

cglib:基于类的代理,会生成目标对象类型的子对象。

总结:

  1. Spring AOP 优先使用接口代理 (JDK动态代理)
  2. 如果没有接口,使用Cglib动态代理
AspectJ 切面编程 (xml)
AOP 相关术语

需求: 在save()方法逻辑调用之前进行权限的校验

  • Joinpoint 连接点:所有的方法都是连接点

  • Pointcut 切入点:就是需要增强的方法 eg:sava()方法需要增强,save()就是切入点

  • Advice 通知/增强:增强的逻辑 eg:权限的校验逻辑

  • Target 目标对象

  • Weaving 织入

  • Proxy 代理对象

  • Aspect 切面:把通知和切入点进行结合,就是把通知的逻辑用在切入点。

    换句话:对哪些方法进行怎样的代码增强

通知类型
  • 前置通知 : 在目标方法调用之前调用 (权限校验)
  • 后置通知 : 在目标方法调用之后调用 returning 返回值
  • 环绕通知 : 前置+后置 (事务) 在方法之前和方法之后执行. 特点:可以阻止目标方法执行
  • 异常通知: 目标方法出现异常执行. 如果方法没有异常,不会执行. 特点:可以获得异常的信息
  • 最终通知:指的是无论是否有异常,总是被执行的。
开发步骤
  • 确定目标 bean (xml配置要增强的目标)

  • 编写 Advice通知 (普通的JavaBean即可,不需实现接口)

  • 配置aop: 切入点和切面

代码

pom.xml

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

        <!--Spring AOP-->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.7</version>
        </dependency>

        <!--Spring核心容器-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.2.RELEASE</version>
        </dependency>


        <!--Spring整合单元测试-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.0.2.RELEASE</version>
        </dependency>

xml 导入约束

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
</beans>

xml 中声明 增强的bean (扩展的bean) 和 被增强的bean (被扩展的bean)

<!--注册userService-->
<bean id="userService" class="perm.coco.service.Impl.UserServiceImpl"></bean>
<!--注册切面类-->
<bean id="myAspect" class="perm.coco.aspectj.MyAspect"></bean>

aop 配置

<!--配置Aop,切入点和切面-->
    <aop:config>
        <!--切入点-->
        <aop:pointcut id="pointcut01" expression="execution(* perm.coco.service.Impl.UserServiceImpl.save(..))"/>
        <aop:pointcut id="pointcut02" expression="execution(* perm.coco.service.Impl.UserServiceImpl.delete(..))"/>
        <aop:pointcut id="pointcut03" expression="execution(* perm.coco.service.Impl.UserServiceImpl.findAll(..))"/>
        <aop:pointcut id="pointcut04" expression="execution(* perm.coco.service.Impl.*.*(..))"/>
        <aop:pointcut id="pointcut05" expression="execution(* perm.coco.service.Impl.*.*(..))"/>

        <!--配置切面-->
        <aop:aspect ref="myAspect">
            <!--前置-->
            <aop:before method="before" pointcut-ref="pointcut01"></aop:before>
            <!--后置-->
            <aop:after-returning method="after" pointcut-ref="pointcut02"></aop:after-returning>
            <!--环绕-->
            <aop:around method="around" pointcut-ref="pointcut03"></aop:around>
            <!--异常通知-->
            <aop:after-throwing method="afterThrowing" pointcut-ref="pointcut04" throwing="e"></aop:after-throwing>
            <!--最终通知-->
            <aop:after method="after" pointcut-ref="pointcut05"></aop:after>
        </aop:aspect>
    </aop:config>
前置通知

在原来方法执行前执行

应用: 权限控制 (权限不足,抛出异常)、 记录方法调用信息日志

<!--配置Aop,切入点和切面-->
<aop:config>
        <!--切入点-->
        <aop:pointcut id="pointcut01" expression="execution(* perm.coco.service.Impl.UserServiceImpl.save(..))"/>
       
        <!--配置切面-->
        <aop:aspect ref="myAspect">
            <!--前置-->
            <aop:before method="before" pointcut-ref="pointcut01"></aop:before>
</aop:config>
//前置
public void before() {
   System.out.println("前置增强了...");
}

后置通知

<!--后置-->
<aop:after-returning method="after" pointcut-ref="pointcut02"></aop:after-returning>
//后置
public void afterReturning() {
    System.out.println("后置打印日志....");
}

....待续....

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

推荐阅读更多精彩内容