Spring AOP

AOP简介

AOP的全称是 Aspect-Oriented Programming,即面向切面编程(也称面向方面编程)。它是面向对象编程(OOP)的一种补充,目前已成为一种比较成熟的编程方式。

AOP作用

在软件开发中,散布于应用中多处的功能被称为横切关注点,通常来讲,这些横切关注点从概念上是与应用的业务逻辑相分离的(但是往往会直接嵌入到应用的业务逻辑之中),比如通常会进行事务处理、日志记录等操作。在OOP设计中,它们导致了大量代码的重复,而不利于各个模块的重用;但在面向切面编程中,我们仍然在一个地方定义这些功能,但是可以通过声明的方式定义这些功能要以何种方式在何处使用,而无需修改受影响的类,这样使得服务模块更加简洁,因为这些次要关注点的代码已经被转移到切面中了。

AOP相关术语

1.Aspect(切面):是通知和切点的结合,共同定义了切面的全部内容——它是什么,在何时和何处完成其功能。
2.Joinpoint(连接点):是应用执行过程中能够插入切面的一个点,切面代码可以利用这些点插入到应用的正常流程之中来添加新的行为,也就是指方法的调用。
3.Pointcut(切入点):定义了切面中何处完成其功能,即在哪些类以及哪些方法上切入。
4.Advice(通知/增强处理):定义了切面中何时做什么功能。比如应该在目标方法被调用之前、之后还是抛出异常后调用通知?
5.Introduction(引入):在不修改代码的前提下,允许我们向现有的类添加新方法或属性。
6.Weaving(织入):是把切面应用到目标对象并创建新的代理对象的过程。

相关通知类型

1.@After:通知方法会在目标方法返回或抛出异常后调用。
2.@AfterReturning:通知方法会在目标方法返回后调用。
3.@AfterThrowing:通知方法会在目标方法抛出异常后调用。
4.@Around:通知方法会将目标方法封装起来。
5.@Before:通知方法会在目标方法调用之前执行。

使用注解创建切面

现在模拟一个场景,在某个演出中我们需要引入观众的一些反应,这里演出是核心功能,而观众的反应是次要功能,因此要将观众定义为一个切面并应用到表演家演出上。
1.AOP相关的pom依赖

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
      <version>5.0.7.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>aopalliance</groupId>
      <artifactId>aopalliance</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.9.1</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aspects</artifactId>
      <version>5.0.7.RELEASE</version>
    </dependency>

2.创建表演类

@Component("performance") //声明为一个bean
public class Performance {
    public void perform(){
        System.out.println("表演家正在表演中!");
    }
}

3.创建观众类

@Component("audience") //声明为一个bean
@Aspect //声明此类是个切面
public class Audience {
    /**
     * 表演家演出前需要的观众反应
     */
    @Before("execution(* com.mybean.concert.Performance.perform())")
    public void beforePerform(){
        System.out.println("观众入席!");
        System.out.println("观众手机调至静音!");
    }

    /**
     * 表演家演出成功后需要的观众反应
     */
    @AfterReturning("execution(* com.mybean.concert.Performance.perform())")
    public void afterReturningPerform(){
        System.out.println("观众鼓掌!");
    }

    /**
     * 表演家演出出状况后需要的观众反应
     */
    @AfterThrowing("execution(* com.mybean.concert.Performance.perform())")
    public void afterThrowingPerform(){
        System.out.println("观众要求退款!");
    }
}

可以看出我们在频繁地使用切点表达式,可以用@Pointcut使代码变得简介:

@Component("audience")
@Aspect
public class Audience {

    @Pointcut("execution(* com.mybean.concert.Performance.perform())")
    public void performance(){
    }

    @Before("performance()")
    public void beforePerform(){
        System.out.println("观众入席!");
        System.out.println("观众手机调至静音!");
    }

    @AfterReturning("performance()")
    public void afterReturningPerform(){
        System.out.println("观众鼓掌!");
    }

    @AfterThrowing("performance()")
    public void afterThrowingPerform(){
        System.out.println("观众要求退款!");
    }
}

通过两个注解可以看出,虽然此类被声明为一个切面,但是它仍然能够像普通类一样被其他java类调用,它的方法也能够进行独立的单元测试,只不过@Aspect表明它会被作为切面使用而已,这里还将它声明为一个bean。

4.在配置类上启动注解的自动代理

@Configuration //说明此类是个配置类
@ComponentScan //启动组件扫描
@EnableAspectJAutoProxy //启用Aspect自动代理
public class BeanConfig {
}

5.测试

public class App {
    public static void main( String[] args ) {
        ApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class);
        Performance performance = (Performance) applicationContext.getBean("performance");
        performance.perform();
    }
}

控制台打印结果如下:


截图

创建环绕通知

环绕通知是最为强大的通知类型,它能够让你编写的逻辑将被通知的目标方法完全包装起来。实际上就像在一个通知方法中同时编写前置通知和后置通知。
例如上方的观众类可写为:

@Component("audience")
@Aspect
public class Audience {

    @Pointcut("execution(* com.mybean.concert.Performance.perform())")
    public void performance(){
    }

    @Around("performance()")
    public void aroundPerformance(ProceedingJoinPoint joinPoint) {
        try {
            System.out.println("观众入席!");
            System.out.println("观众手机调至静音!");
            joinPoint.proceed();
            System.out.println("观众鼓掌!");
        } catch (Throwable e) {
            System.out.println("观众要求退款!");
        }
    }
}

其它代码不变,运行后控制台结果和上方一样。
其中通过ProceedingJoinPoint来调用被通知的方法,当要将控制权交给被通知的方法时(这里指表演类的表演方法),需要调用ProceedingJoinPoint的proceed()方法。

处理通知中的参数

如果被通知的方法中有参数,且切面需要使用到这些参数呢?接着上面的情景,如果表演家表演的内容需要被指定,通过以下例子切面能够获得被通知方法中的参数:

@Component("performance")
public class Performance {
    public void perform(String performanceName){
        System.out.println("表演家正在演奏" + performanceName);
    }
}
@Component("performanceNumber")
@Aspect
public class PerformanceNumber {

    @Pointcut("execution(* com.mybean.concert.Performance.perform(String))" + "&& args(performanceName)")
    public void performance(String performanceName){
    }

    @Before("performance(performanceName)")
    public void beforePerform(String performanceName){
        System.out.println("观众入席!");
        System.out.println("观众手机调至静音!");
    }

    @AfterReturning("performance(performanceName)")
    public void afterReturningPerform(String performanceName){
        System.out.println("观众为表演家演奏的" + performanceName + "节目鼓掌!");
    }

    @AfterThrowing("performance(performanceName)")
    public void afterThrowingPerform(String performanceName){
        System.out.println("观众要求退款!");
    }
}

args(performanceName)表明传递给perform()方法的string类型的参数也会传递到通知去,参数的名称performanceName也与切点方法签名中的参数相匹配。

如果是环绕通知,则:

@Component("performanceNumber")
@Aspect
public class Audience {

    @Pointcut("execution(* com.mybean.concert.Performance.perform(String))")
    public void performance(){
    }

    @Around("performance()")
    public void aroundPerformance(ProceedingJoinPoint joinPoint) {
        try {
            System.out.println("观众入席!");
            System.out.println("观众手机调至静音!");
            joinPoint.proceed();
            Object[] args = joinPoint.getArgs();
            System.out.println("观众为表演家演奏的" + args[0] + "节目鼓掌!");
        } catch (Throwable e) {
            System.out.println("观众要求退款!");
        }
    }
}

部分ProceedingJoinPoint对象的方法信息如下:


截图

测试:

public class App {
    public static void main( String[] args ) {
        ApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class);
        Performance performance = (Performance) applicationContext.getBean("performance");
        performance.perform("钢琴");
    }
}

运行结果如下:


截图

通过注解为被通知方法引入新功能

切面可以为Spring bean添加新方法。 在Spring中,切面只是实现了它们所包装bean相同接口的代理。实际上,除了实现这些接口,代理也能暴露新接口,那样的话,切面所通知的bean看起来像是实现了新的接口,即便底层实现类并没有实现这些接口也无所谓。
先引入新接口和对应的实现:

public interface Encoreable {
    void performEncore();
}
@Component("encoreableImpl")
public class EncoreableImpl implements Encoreable{

    @Override
    public void performEncore() {
        System.out.println("添加的新方法");
    }
}

创建一个用于注入新方法的切面EncoreableIntroducer:

@Component("encoreableIntroducer")
@Aspect
public class EncoreableIntroducer {

    @DeclareParents(value="com.mybean.concert.Performance+",defaultImpl= EncoreableImpl.class)
    public static Encoreable encoreable;
}

可以看到,EncoreableIntroducer是一个切面,但是它与我们之前所创建的切面不同,它并没有提供前置、后置或环绕通知,而是通过@DeclareParents注解,将Encoreable接口引入 到Performance bean中。@DeclareParents注解由三部分组成:
1.value属性:指定了哪种类型的bean要引入该接口。
2.defaultImpl:指定了为引入功能提供实现的类。
3.@DeclareParents:所标注的静态属性指明了要引入的接口。

测试:

public class App {
    public static void main( String[] args ) {
        ApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class);
        Performance performance = (Performance) applicationContext.getBean("performance");
        ((Encoreable) performance).performEncore();
    }
}

控制台打印如下,说明Encoreable的方法已经添加到Performance中,注意要进行强制转换:


截图

在xml中声明切面

如果需要声明切面,但是又不能为通知类添加注解的时候,就必须转向xml配置了。
去掉上面类的@Aspect和@Component注解后,把声明bean和切面全在xml文件中配置:

<?xml version="1.0" encoding="UTF-8"?>
<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-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <bean id="audience" class="com.mybean.aspect.Audience">
    </bean>

    <bean id="performance" class="com.mybean.concert.Performance">
    </bean>

    <aop:config>
        <aop:aspect ref="audience">
            <aop:before pointcut="execution(* com.mybean.concert.Performance.perform())" method="beforePerform"/>
            <aop:after-returning pointcut="execution(* com.mybean.concert.Performance.perform())" method="afterReturningPerform"/>
            <aop:after-throwing pointcut="execution(* com.mybean.concert.Performance.perform())" method="afterThrowingPerform"/>
        </aop:aspect>
    </aop:config>
</beans>

如果用pointcut,则:

<aop:config>
        <aop:aspect ref="audience">
            <aop:pointcut expression="execution(* com.mybean.concert.Performance.perform())" id="performance"/>
            <aop:before pointcut-ref="performance" method="beforePerform"/>
            <aop:after-returning pointcut-ref="performance" method="afterReturningPerform"/>
            <aop:after-throwing pointcut-ref="performance" method="afterThrowingPerform"/>
        </aop:aspect>
</aop:config>

如果是声明环绕通知,则:

<aop:config>
        <aop:aspect ref="audience">
            <aop:pointcut expression="execution(* com.mybean.concert.Performance.perform())" id="performance"/>
            <aop:around method="aroundPerformance" pointcut-ref="performance"></aop:around>
        </aop:aspect>
</aop:config>

如果是为通知传递参数,则:

<aop:config>
        <aop:aspect ref="audience">
            <aop:pointcut expression="execution(* com.mybean.concert.Performance.perform(String)) and args(performanceName)" id="performance"/>
            <aop:before pointcut-ref="performance" method="beforePerform"/>
            <aop:after-returning pointcut-ref="performance" method="afterReturningPerform"/>
            <aop:after-throwing pointcut-ref="performance" method="afterThrowingPerform"/>
        </aop:aspect>
    </aop:config>

因为“&”在xml中有特殊含义,是转义字符的前缀,所以用and来代替“&&”。

如果要通过切面引入新功能,则:

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

推荐阅读更多精彩内容

  • SpringAOP的使用Demo 通过配置管理特性,Spring AOP 模块直接将面向方面的编程功能集成到了 S...
    独念白阅读 462评论 0 5
  • 前言 只有光头才能变强 上一篇已经讲解了Spring IOC知识点一网打尽!,这篇主要是讲解Spring的AOP模...
    Java3y阅读 6,881评论 8 181
  • 一、AOP 简介 AOP(Aspect-Oriented Programming, 面向切面编程): 是一种新的方...
    leeqico阅读 786评论 0 1
  • 1.概述 Aop(Aspect Oriented Programming),即面向切面编程,这是面向对象思想的一种...
    Tian_Peng阅读 3,534评论 0 2
  • 【spring-boot】spring aop 面向切面编程初接触 众所周知,spring最核心的两个功能是aop...
    可可西里的星星阅读 410评论 1 0