Spring AOP - 基於註解的切點



連線點

連線點代表應用程式中可以插入 AOP 切面的一個點。也可以說,它是應用程式中使用 Spring AOP 框架執行操作的實際位置。請考慮以下示例:

  • 一個或多個包中包含的所有方法類。

  • 類的特定方法。

切點

切點是一組一個或多個連線點,在這些連線點上應執行通知。可以使用表示式或模式指定切點,這將在我們的 AOP 示例中看到。在 Spring 中,切點有助於使用特定的連線點來應用通知。請考慮以下示例:

  • @Pointcut("execution(* com.tutorialspoint.*.*(..))")

  • @Pointcut("execution(* com.tutorialspoint.Student.getName(..))")

語法

@Aspect
public class Logging {
   @Pointcut("execution(* com.tutorialspoint.*.*(..))")
   private void selectAll(){}
}

其中,

  • @Aspect - 將一個類標記為包含通知方法的類。

  • @Pointcut - 將一個函式標記為切點

  • execution( 表示式 ) - 涵蓋要應用通知的方法的表示式。

為了理解上面提到的與連線點和切點相關的概念,讓我們編寫一個示例,該示例將實現一些切點。為了用一些通知編寫我們的示例,讓我們準備好一個工作的 Eclipse IDE,並使用以下步驟建立一個 Spring 應用程式:

步驟 描述
1 更新在章節 Spring AOP - 應用 下建立的 Student 專案。
2 更新 Bean 配置並按如下所述執行應用程式。

以下是 Logging.java 檔案的內容。這實際上是方面模組的一個示例,它定義了要在各個點呼叫的方法。

package com.tutorialspoint;

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

@Aspect
public class Logging {
   /** Following is the definition for a PointCut to select
      *  all the methods available. So advice will be called
      *  for all the methods.
   */
   @Pointcut("execution(* com.tutorialspoint.*.*(..))")
   private void selectAll(){}

   /** 
      * This is the method which I would like to execute
      * before a selected method execution.
   */
   @Before("selectAll()")
   public void beforeAdvice(){
      System.out.println("Going to setup student profile.");
   }  
}

以下是 Student.java 檔案的內容。

package com.tutorialspoint;

public class Student {
   private Integer age;
   private String name;

   public void setAge(Integer age) {
      this.age = age;
   }
   public Integer getAge() {
      System.out.println("Age : " + age );
      return age;
   }
   public void setName(String name) {
      this.name = name;
   }
   public String getName() {
      System.out.println("Name : " + name );
      return name;
   }
   public void printThrowException(){
      System.out.println("Exception raised");
      throw new IllegalArgumentException();
   }
}

以下是 MainApp.java 檔案的內容。

package com.tutorialspoint;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");

      Student student = (Student) context.getBean("student");
      student.getName();
      student.getAge();     
   }
}

以下是配置檔案 Beans.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"
   xsi:schemaLocation = "http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
   http://www.springframework.org/schema/aop 
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd ">

   <aop:aspectj-autoproxy/>

   <!-- Definition for student bean -->
   <bean id = "student" class = "com.tutorialspoint.Student">
      <property name = "name"  value = "Zara" />
      <property name = "age"  value = "11"/>      
   </bean>

   <!-- Definition for logging aspect -->
   <bean id = "logging" class = "com.tutorialspoint.Logging"/> 
      
</beans>

執行專案

建立原始檔和配置檔案後,執行應用程式。右鍵單擊應用程式中的 MainApp.java,然後使用“以 Java 應用程式執行”命令。如果應用程式一切正常,它將列印以下訊息。

Going to setup student profile.
Name : Zara
Going to setup student profile.
Age : 11

上面定義的 @Pointcut 使用表示式來選擇 com.tutorialspoint 包下定義的所有方法。@Before 通知使用上面定義的切點作為引數。實際上,beforeAdvice() 方法將在切點涵蓋的每個方法之前被呼叫。

廣告