Skip to content

AOP Aspect Oriented Programming

AOP: Aspect-Oriented Programming 🤔

Another seemingly sophisticated term, AOP (Aspect-Oriented Programming), is essentially about dynamically weaving code into specific methods and positions of a class at runtime. In other words, AOP allows us to perform additional operations before or after the execution of a method—effectively, it’s a form of proxying!

By using AOP, we can introduce extra behavior without altering the original business logic. For example, if we need to log information after certain methods are executed, AOP can help us do this efficiently. It can add these actions to multiple methods at once. In essence, it enhances our existing methods without modifying the source code, thereby extending their functionality.

又是一个听起来很高大上的名词,AOP(Aspect Oriented Programming)思想实际上就是:在运行时,动态地将代码切入到类的指定方法、指定位置上。也就是说,我们可以使用AOP来帮助我们在方法执行前或执行之后,做一些额外的操作,实际上,它就是代理!

通过AOP我们可以在保证原有业务不变的情况下,添加额外的动作,比如我们的某些方法执行完成之后,需要打印日志,那么这个时候,我们就可以使用AOP来帮助我们完成,它可以批量地为这些方法添加动作。可以说,它相当于将我们原有的方法,在不改变源代码的基础上进行了增强处理。

image-20221130155358974

It's as if our entire business process is "cut" at a specific point, and an additional operation is inserted at that cut point before being reconnected. This inserted position is known as a "join point." The underlying principle of AOP is actually achieved through dynamic proxy mechanisms, which we've already covered in the Java Web phase.

However, instead of using the JDK's built-in dynamic proxy, Spring's underlying implementation relies on a third-party library—CGLib. This allows Spring to proxy classes in the form of a superclass, not just interfaces, providing greater flexibility in handling various scenarios.

相当于我们的整个业务流程,被直接斩断,并在断掉的位置添加了一个额外的操作,再连接起来,也就是在一个切点位置插入内容。它的原理实际上就是通过动态代理机制实现的,我们在JavaWeb阶段已经给大家讲解过动态代理了。不过Spring底层并不是使用的JDK提供的动态代理,而是使用的第三方库实现,它能够以父类的形式代理,而不仅仅是接口。

Implementing AOP with Configuration

Before we begin, let's switch back to the previous XML configuration mode. Later, we will also demonstrate how to perform AOP operations using annotations. Note that we've added some new AOP-related configurations, so feel free to copy the following setup directly:

在开始之前,我们先换回之前的XML配置模式,之后也会给大家讲解如何使用注解完成AOP操作,注意这里我们还加入了一些新的AOP相关的约束进来,建议直接CV下面的:

<?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"
       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">
</beans>

Spring is one of the frameworks that supports AOP programming (in fact, it integrates parts of the AspectJ framework). To use AOP, we first need to import the following dependency:

Spring是支持AOP编程的框架之一(实际上它整合了AspectJ框架的一部分),要使用AOP我们需要先导入一个依赖:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aspects</artifactId>
    <version>6.0.10</version>
</dependency>

Screenshot 2024-05-30 at 20.29.30

So, how do we use AOP? To implement AOP, we need to understand the following concepts:

  1. Target Class and Method: Which class and which method need to be intercepted (where we want to "cut in").
  2. Advice Logic: What action should be executed after the interception.
  3. Timing of Interception: Should the interception occur before, after, or around the method execution.
  4. Configuration: How to inform Spring about where and how the interception should take place.

For example, let's say we want to enhance the study method of a Student object by adding some additional operations without modifying the original source code.

那么,如何使用AOP呢?首先我们要明确,要实现AOP操作,我们需要知道这些内容:

  1. 需要切入的类,类的哪个方法需要被切入
  2. 切入之后需要执行什么动作
  3. 是在方法执行前切入还是在方法执行后切入
  4. 如何告诉Spring需要进行切入

比如现在我们希望对这个学生对象的study方法进行增强,在不修改源代码的情况下,增加一些额外的操作:

public class Student {
    public void study(){
        System.out.println("室友还在打游戏,我狠狠的学Java,太爽了"); 
        //现在我们希望在这个方法执行完之后,打印一些其他的内容,在不修改原有代码的情况下,该怎么做呢?
    }
}
<bean class="org.example.entity.Student"/>

Following the steps outlined above, the first thing we need to do is identify the target class. In this case, it's clearly the Student class, and the method we want to intercept is the study method.

The second step is to define what action we want to perform once we've intercepted this method. Here, we'll create a new class and write the action we want to execute as a method within it:

那么我们按照上面的流程,依次来看,首先需要解决的问题是,找到需要切入的类,很明显,就是这个Student类,我们要切入的是这个study方法。

第二步,我们切入之后要做什么呢?这里我们直接创建一个新的类,并将要执行的操作写成一个方法:

public class StudentAOP {
    // This is the method that we intend to execute as the enhancement
    //这个方法就是我们打算对其进行的增强操作
    public void afterStudy() {
      System.out.println("Why did they all inherit family wealth after graduation, while I'm still working for them? What's the meaning of my hard work...");
    }
}

Note that this class also needs to be registered as a Bean.

注意这个类也得注册为Bean才可以:

<bean id="studentAOP" class="org.example.entity.StudentAOP"/>

The third step is to determine whether the interception should occur before or after the method execution. As per the requirements above, we need to intercept after the method executes.

The fourth and most crucial step is how to inform Spring that we want to perform this interception. For this, we need to configure AOP in the configuration file:

第三步,我们要明确这是在方法执行之前切入还是执行之后切入,很明显,按照上面的要求,我们需要执行之后进行切入。

第四步,最关键的来了,我们怎么才能告诉Spring我们要进行切入操作呢?这里我们需要在配置文件中进行AOP配置:

<aop:config>

</aop:config>

Next, we need to add a new pointcut. First, provide an ID, which can be any name you choose.

接着我们需要添加一个新的切点,首先填写ID,这个随便起都可以:

<aop:pointcut id="test" expression=""/>

Next, we use the expression attribute to specify the method we want to intercept. The expression supports various ways to select methods, and Spring AOP offers the following AspectJ Pointcut Designators (PCD) for expressions:

  • execution: Used to match method execution join points. This is the primary pointcut designator used with Spring AOP.
  • within: Limits matching to join points within certain types (methods declared within the matching types when using Spring AOP).
  • this: Limits matching to join points (method executions when using Spring AOP) where the bean reference (Spring AOP proxy) is an instance of the given type.
  • target: Limits matching to join points (method executions when using Spring AOP) where the target object (the application object being proxied) is an instance of the given type.
  • args: Limits matching to join points (method executions when using Spring AOP) where the arguments are instances of the given types.
  • @target: Limits matching to join points (method executions when using Spring AOP) where the target object's class has the given annotation.
  • @args: Limits matching to join points (method executions when using Spring AOP) where the runtime types of the actual arguments have the given annotations.
  • @within: Limits matching to join points within types with the given annotation (method executions within types with the given annotation when using Spring AOP).
  • @annotation: Limits matching to join points where the subject (the method being run in Spring AOP) has the given annotation.

For more details, please refer to the documentation: Spring AOP Pointcut Expressions

然后就是通过后面的expression表达式来选择到我们需要切入的方法,这个表达式支持很多种方式进行选择,Spring AOP支持以下AspectJ切点指示器(PCD)用于表达式:

  • execution:用于匹配方法执行连接点。这是使用Spring AOP时使用的主要点切割指示器。
  • within:限制匹配到某些类型的连接点(使用Spring AOP时在匹配类型中声明的方法的执行)。
  • this:限制与连接点匹配(使用Spring AOP时方法的执行),其中bean引用(Spring AOP代理)是给定类型的实例。
  • target:限制匹配连接点(使用Spring AOP时方法的执行),其中目标对象(正在代理的应用程序对象)是给定类型的实例。
  • args:限制与连接点匹配(使用Spring AOP时方法的执行),其中参数是给定类型的实例。
  • @target:限制匹配连接点(使用Spring AOP时方法的执行),其中执行对象的类具有给定类型的注释。
  • @args:限制匹配到连接点(使用Spring AOP时方法的执行),其中传递的实际参数的运行时类型具有给定类型的注释。
  • @within:限制与具有给定注释的类型中的连接点匹配(使用Spring AOP时在带有给定注释的类型中声明的方法的执行)。
  • @annotation:与连接点主体(在Spring AOP中运行的方法)具有给定注释的连接点匹配的限制。

更多详细内容请查阅:https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#aop-pointcuts-designators

The execution designator, which we'll primarily focus on, follows this format:

modifier package.className.methodName(methodParameters)
  • Modifier: Examples include public, protected, private, return types, static, etc. (Use * to represent any modifier)
  • Package: Such as com.test (* represents all, e.g., com.* means all packages under com)
  • Class Name: * can be used to represent all classes within a package
  • Method Name: * can represent all methods
  • Method Parameters: Specify parameters accordingly, such as (String, String), or use * to represent any single parameter, and .. to represent all parameters.

其中,我们主要学习的execution填写格式如下:

修饰符 包名.类名.方法名称(方法参数)
  • 修饰符:public、protected、private、包括返回值类型、static等等(使用*代表任意修饰符)
  • 包名:如com.test( 代表全部,比如com.代表com包下的全部包)
  • 类名:使用*也可以代表包下的所有类
  • 方法名称:可以使用*代表全部方法
  • 方法参数:填写对应的参数即可,比如(String, String),也可以使用*来代表任意一个参数,使用..代表所有参数。

You can also use other attributes like @annotation to match methods with a specific annotation. In our simple example, we only need to use the execution designator as follows:

<aop:pointcut id="studyPointcut" expression="execution(* com.example.Student.study(..))"/>

也可以使用其他属性来进行匹配,比如@annotation可以用于表示标记了哪些注解的方法被切入,这里我们就只是简单的执行,所以说只需要这样写就可以了:

<aop:pointcut id="test" expression="execution(* org.example.entity.Student.study())"/>

In this way, we've specified the method that needs to be intercepted. Next, we will incorporate our enhancement method by adding the <aop:aspect> tag, and use the ref attribute to point it to the AOP class Bean that we registered earlier:

这样,我们就指明了需要切入的方法,然后就是将我们的增强方法,我们在里面继续添加aop:aspect标签,并使用ref属性将其指向我们刚刚注册的AOP类Bean:

<aop:config>
    <aop:pointcut id="test" expression="execution(* org.example.entity.Student.study())"/>
    <aop:aspect ref="studentAOP">

    </aop:aspect>
</aop:config>

Next, we add the subsequent actions. The Spring AOP framework supports various types of advice, such as before execution, after execution, after throwing an exception, after a method returns, and more. Here are the common types of advice you can use:

接着就是添加后续动作了,当然,官方支持的有多种多样的,比如执行前、执行后、抛出异常后、方法返回后等等:

image-20221216155201849

Among these, the around advice is the most flexible, allowing for more customization, which we will introduce later. For now, according to the requirements above, we'll directly add the subsequent action, making sure to specify the pointcut that it applies to:

其中around方法为环绕方法,自定义度会更高,我们会在稍后介绍。这里我们按照上面的要求,直接添加后续动作,注意需要指明生效的切点:

<aop:aspect ref="studentAOP">
    <!--     method就是我们的增强方法,pointcut-ref指向我们刚刚创建的切点     -->
    <aop:after method="afterStudy" pointcut-ref="test"/>
</aop:aspect>

With this, we have successfully completed the configuration. If everything is set up correctly, you should see an icon appear next to the configuration in your IDE, indicating that the AOP settings are recognized and active.

这样,我们就成功配置好了,配置正确会在旁边出现图标:

image-20221216155551779

Let's try:

public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
    Student bean = context.getBean(Student.class);
    bean.study();
}

The result is in the following:

image-20221216155616952

Screenshot 2024-05-30 at 20.44.43

You can see that after our original method execution is complete, the enhancement method is executed as well. This is essentially what dynamic proxying achieves—enhancing method calls without modifying the original code. In later studies of Spring MVC, we can even use this to quickly configure access log printing.

As mentioned earlier, AOP is implemented based on dynamic proxying. Therefore, if we try to directly obtain the type of the Bean, we'll notice that it's not the original type anymore.

可以看到在我们原本的方法执行完成之后,它还继续执行了我们的增强方法,这实际上就是动态代理做到的,实现在不修改原有代码的基础上,对方法的调用进行各种增强,在之后的SpringMVC学习中,我们甚至可以使用它来快速配置访问日志打印。

前面我们说了,AOP是基于动态代理实现的,所以说我们如果直接获取Bean的类型,会发现不是原本的类型了:

Student bean = context.getBean(Student.class);
System.out.println(bean.getClass());

image-20221216172042146

Screenshot 2024-05-30 at 21.56.47

You can see that after our original method execution is complete, the enhancement method is executed as well. This is essentially what dynamic proxying achieves—enhancing method calls without modifying the original code. In later studies of Spring MVC, we can even use this to quickly configure access log printing.

As mentioned earlier, AOP is implemented based on dynamic proxying. Therefore, if we try to directly obtain the type of the Bean, we'll notice that it's not the original type anymore.

这里其实是Spring通过CGLib为我们生成的动态代理类,也就不难理解为什么调用方法会直接得到增强之后的结果了。包括我们前面讲解Spring的异步任务调度时,为什么能够直接实现异步,其实就是利用了AOP机制实现的方法增强。

虽然这些功能已经非常强大了,但是仅仅只能简单的切入还是不能满足一些需求,在某些情况下,我们可以需求方法执行的一些参数,比如方法执行之后返回了什么,或是方法开始之前传入了什么参数等等,现在我们修改一下Student中study方法的参数:

public class Student {
    public void study(String str){  //现在方法有一个String类型的参数
        System.out.println("都别学Java了,根本找不到工作,快去卷"+str);
    }
}

我们希望在增强的方法中也能拿到这个参数,然后进行处理:

public class StudentAOP {
    public void afterStudy() {
        //这个str参数我们该从哪里拿呢?
        System.out.println("学什么"+str+",Rust天下第一!");
    }
}

这个时候,我们可以为我们切入的方法添加一个JoinPoint参数,通过此参数就可以快速获取切点位置的一些信息:

public void afterStudy(JoinPoint point) {   //JoinPoint实例会被自动传入
    //这里我们直接通过getArgs()返回的参数数组获取第1个参数
    System.out.println("学什么"+point.getArgs()[0]+",Rust天下第一!");
}

接着我们修改一下刚刚的AOP配置(因为方法参数有变动)看看结果吧:

<aop:pointcut id="test" expression="execution(* org.example.entity.Student.study(String))"/>

现在我们来测试一下:

public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
    Student bean = context.getBean(Student.class);
    bean.study("PHP");
}

image-20221216160501469

Screenshot 2024-05-30 at 22.34.37

Screenshot 2024-05-30 at 22.34.48

Does it feel like most functionalities can be handled using AOP?

Next, let's take a look at the more flexible around advice. Now, suppose we want to add various actions both before and after the method execution. Writing these as separate pointcuts can be quite slow, so can we combine them together? This is where the around advice comes in handy.

The around advice acts as a complete proxy for the target method, fully encapsulating it. You need to manually invoke the original method within this advice, and it allows you to access additional parameters directly:

是不是感觉大部分功能都可以通过AOP来完成了?

我们接着来看自定义度更高的环绕方法,现在我们希望在方法执行前和执行后都加入各种各样的动作,如果还是一个一个切点写,有点太慢了,能不能直接写一起呢,此时我们就可以使用环绕方法。

环绕方法相当于完全代理了此方法,它完全将此方法包含在中间,需要我们手动调用才可以执行此方法,并且我们可以直接获取更多的参数:

public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
    System.out.println("方法开始之前");
    Object value = joinPoint.proceed();   //调用process方法来执行被代理的原方法,如果有返回值,可以使用value接收
    System.out.println("方法执行完成,结果为:"+value);
    return value;
}

Screenshot 2024-05-30 at 23.27.17

注意,如果代理方法存在返回值,那么环绕方法也需要有一个返回值,通过proceed方法来执行代理的方法,也可以修改参数之后调用proceed(Object[]),使用我们给定的参数再去执行:

public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
    System.out.println("方法开始之前");
    String arg = joinPoint.getArgs()[0] + "伞兵一号";
    Object value = joinPoint.proceed(new Object[]{arg});
    System.out.println("方法执行完成,结果为:"+value);
    return value;
}

这里我们还是以study方法为例,现在我们希望在调用前修改这个方法传入的参数值,改成我们自己的,然后在调用之后对返回值结果也进行处理:

public String study(String str){
    if(str.equals("Java"))
        System.out.println("我的梦想是学Java");
    else {
        System.out.println("我就要学Java,不要修改我的梦想!");
        str = "Java";
    }
    return str;
}

现在我们编写一个环绕方法,对其进行全方面处理:

public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
    System.out.println("我是她的家长,他不能学Java,必须学Rust,这是为他好");
    Object value = joinPoint.proceed(new Object[]{"Rust"});
    if(value.equals("Java")) {
        System.out.println("听话,学Rust以后进大厂!");
        value = "Rust";
    }
    return value;
}

同样的,因为方法变动了,现在我们去修改一下我们的AOP配置:

<aop:pointcut id="test" expression="execution(* org.example.entity.Student.study(String))"/>
<aop:aspect ref="studentAOP">
    <aop:around method="around" pointcut-ref="test"/>
</aop:aspect>

image-20221216162003675

细心的小伙伴可能会发现,环绕方法的图标是全包的,跟我们之前的图标不太一样。

现在我们来试试看吧:

public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
    Student bean = context.getBean(Student.class);
    System.out.println("已报名:"+bean.study("Java"));
}

image-20221216161855358

这样,我们就实现了环绕方法,通过合理利用AOP带来的便捷,可以使得我们的代码更加清爽和优美。这里介绍一下 AOP 领域中的特性术语,防止自己下来看不懂文章:

  • 通知(Advice): AOP 框架中的增强处理,通知描述了切面何时执行以及如何执行增强处理,也就是我们上面编写的方法实现。
  • 连接点(join point): 连接点表示应用执行过程中能够插入切面的一个点,这个点可以是方法的调用、异常的抛出,实际上就是我们在方法执行前或是执行后需要做的内容。
  • 切点(PointCut): 可以插入增强处理的连接点,可以是方法执行之前也可以方法执行之后,还可以是抛出异常之类的。
  • 切面(Aspect): 切面是通知和切点的结合,我们之前在xml中定义的就是切面,包括很多信息。
  • 引入(Introduction):引入允许我们向现有的类添加新的方法或者属性。
  • 织入(Weaving): 将增强处理添加到目标对象中,并创建一个被增强的对象,我们之前都是在将我们的增强处理添加到目标对象,也就是织入(这名字挺有文艺范的)

Screenshot 2024-05-31 at 18.22.51

使用接口实现AOP

前面我们介绍了如何使用xml配置一个AOP操作,这节课我们来看看如何使用Advice实现AOP。

它与我们之前学习的动态代理更接近一些,比如在方法开始执行之前或是执行之后会去调用我们实现的接口,首先我们需要将一个类实现Advice接口,只有实现此接口,才可以被通知,比如我们这里使用MethodBeforeAdvice表示是一个在方法执行之前的动作:

public class StudentAOP implements MethodBeforeAdvice {
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println("通过Advice实现AOP");
    }
}

我们发现,方法中包括了很多的参数,其中args代表的是方法执行前得到的实参列表,还有target表示执行此方法的实例对象。运行之后,效果和之前是一样的,但是在这里我们就可以快速获取到更多信息。还是以简单的study方法为例:

public class Student {
    public void study(){
        System.out.println("我是学习方法!");
    }
}
<bean id="student" class="org.example.entity.Student"/>
<bean id="studentAOP" class="org.example.entity.StudentAOP"/>
<aop:config>
    <aop:pointcut id="test" expression="execution(* org.example.entity.Student.study())"/>
    <!--  这里只需要添加我们刚刚写好的advisor就可以了,注意是Bean的名字  -->
    <aop:advisor advice-ref="studentAOP" pointcut-ref="test"/>
</aop:config>

我们来测试一下吧:

image-20221216164110367

Screenshot 2024-06-01 at 11.51.10

除了此接口以外,还有其他的接口,比如AfterReturningAdvice就需要实现一个方法执行之后的操作:

public class StudentAOP implements MethodBeforeAdvice, AfterReturningAdvice {
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println("通过Advice实现AOP");
    }

    @Override
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("我是方法执行之后的结果,方法返回值为:"+returnValue);
    }
}

因为使用的是接口,就非常方便,直接写一起,配置文件都不需要改了:

image-20221216164242506

Screenshot 2024-06-01 at 11.52.43

我们也可以使用MethodInterceptor(同样也是Advice的子接口)进行更加环绕那样的自定义的增强,它用起来就真的像代理一样,例子如下:

public class Student {
    public String study(){
        System.out.println("我是学习方法!");
        return "lbwnb";
    }
}
public class StudentAOP implements MethodInterceptor {   //实现MethodInterceptor接口
    @Override
    public Object invoke(MethodInvocation invocation) throws Throwable {  //invoke方法就是代理方法
        Object value = invocation.proceed();   //跟之前一样,需要手动proceed()才能调用原方法
        return value+"增强";
    }
}

我们来看看结果吧:

image-20221216173211310

使用起来还是挺简单的。

Screenshot 2024-06-01 at 11.56.45

Implementing AOP with Annotations

Next, let's see how to implement AOP using annotations. Switching back to our annotation-based development approach, the first step is to enable AOP annotation support. To do this, add the @EnableAspectJAutoProxy annotation to your main class:

接着我们来看看如何使用注解实现AOP操作,现在变回我们之前的注解开发,首先我们需要在主类添加@EnableAspectJAutoProxy注解,开启AOP注解支持:

@EnableAspectJAutoProxy
@ComponentScan("org.example.entity")
@Configuration
public class MainConfiguration {
}

As usual, simply add @Component on the class to quickly register it as a Bean.

还是熟悉的玩法,类上直接添加@Component快速注册Bean:

@Component
public class Student {
    public void study(){
        System.out.println("我是学习方法!");
    }
}

Next, we need to add the @Aspect annotation to the class that defines the AOP enhancement operations and also add @Component to register it as a Bean, just like how we registered it as a Bean in the configuration file before:

接着我们需要在定义AOP增强操作的类上添加@Aspect注解和@Component将其注册为Bean即可,就像我们之前在配置文件中也要将其注册为Bean那样:

@Aspect
@Component
public class StudentAOP {

}

Next, we can write the enhancement method inside the class and link it to a pointcut. For example, if we want our before method to execute before the study method of the Student class, we do the following:

接着,我们可以在里面编写增强方法,并将此方法添加到一个切点中,比如我们希望在Student的study方法执行之前执行我们的before方法:

public void before(){
    System.out.println("我是之前执行的内容!");
}

You only need to add the @Before annotation to specify the method you want to execute before the target method:

那么只需要添加@Before注解即可:

@Before("execution(* org.example.entity.Student.study())")  //execution写法跟之前一样
public void before(){
    System.out.println("我是之前执行的内容!");
}

In this way, the method will be executed before the specified target method. It feels much more convenient compared to XML configuration, doesn't it? Let's test it out.

这样,这个方法就会在指定方法执行之前执行了,是不是感觉比XML配置方便多了。我们来测试一下:

public static void main(String[] args) {
    ApplicationContext context = new AnnotationConfigApplicationContext(MainConfiguration.class);
    Student bean = context.getBean(Student.class);
    bean.study();
}

image-20221216165625372

Screenshot 2024-06-01 at 12.12.41

Similarly, we can add a JoinPoint parameter to the method to obtain information about the join point, just as we did before:

同样的,我们可以为其添加JoinPoint参数来获取切入点信息,使用方法跟之前一样:

@Before("execution(* org.example.entity.Student.study())")
public void before(JoinPoint point){
    System.out.println("参数列表:"+ Arrays.toString(point.getArgs()));
    System.out.println("我是之前执行的内容!");
}

For added convenience, we can directly include parameters as well, for example:

为了更方便,我们还可以直接将参数放入,比如:

public void study(String str){
    System.out.println("我是学习方法!");
}

Screenshot 2024-06-01 at 12.19.26

By using the named binding pattern, we can quickly access the parameters of the original method:

使用命名绑定模式,可以快速得到原方法的参数:

@Before(value = "execution(* org.example.entity.Student.study(..)) && args(str)", argNames = "str")
//命名绑定模式就是根据下面的方法参数列表进行匹配
//这里args指明参数,注意需要跟原方法保持一致,然后在argNames中指明
public void before(String str){
    System.out.println(str);   //可以快速得到传入的参数
    System.out.println("我是之前执行的内容!");
}

In addition to @Before, there are many other annotations available, such as @AfterReturning and @AfterThrowing. Here's an example of using @AfterReturning:

除了@Before,还有很多可以直接使用的注解,比如@AfterReturning、@AfterThrowing等,比如@AfterReturning:

public String study(){
    System.out.println("我是学习方法!");
    return "lbwnb";
}
@AfterReturning(value = "execution(* org.example.entity.Student.study())", argNames = "returnVal", returning = "returnVal")   //使用returning指定接收方法返回值的参数returnVal
public void afterReturn(Object returnVal){
    System.out.println("返回值是:"+returnVal);
}

Screenshot 2024-06-01 at 13.00.28

Similarly, the around advice can also be declared directly using annotations:

同样的,环绕也可以直接通过注解声明:

@Around("execution(* com.test.bean.Student.test(..))")
public Object around(ProceedingJoinPoint point) throws Throwable {
    System.out.println("方法执行之前!");
    Object val = point.proceed();
    System.out.println("方法执行之后!");
    return val;
}

In fact, whether we're using annotations or XML configuration, the process we follow is essentially the same. As we continue learning, we’ll encounter more scenarios where AOP will be useful.

实际上,无论是使用注解或是XML配置,我们要做的流程都是一样的,在之后的学习中,我们还会遇到更多需要使用AOP的地方。

Screenshot 2024-06-01 at 13.01.25