Around Advice由 @Around 注解表示。它在連接點之前和之后執(zhí)行。這是最有力的建議。它還為最終用戶提供了更多控制權(quán),使他們可以處理 ProceedingJoinPoint。
讓我們圍繞應(yīng)用程序中的建議實施。
步驟1: 打開Spring Initializr http://start.spring.io 。
步驟2: 提供 組名稱。我們提供了組名 com.nhooo。
步驟3: 提供了 Artifact Id。提供Artifact Id aop-around-advice-example。
步驟4: 添加 Spring Web 依賴項。
步驟5: 點擊 生成按鈕。當(dāng)我們單擊"生成"按鈕時,它將所有規(guī)范包裝在 jar 文件中,并將其下載到本地系統(tǒng)。
第6步: 提取下載的jar文件。
步驟7: 使用以下步驟導(dǎo)入文件夾:
文件->導(dǎo)入->現(xiàn)有Maven項目->下一步->瀏覽文件夾 aop-around-advice-example ->完成。
步驟8: 打開 pom.xml 文件并添加以下 AOP 依賴項。它是使用 Spring AOP 和 AspectJ 進行面向方面編程的入門。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> </dependencies>
pom.xml
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.2.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.nhooo</groupId> <artifactId>aop-around-advice-example</artifactId> <version>0.0.1-SNAPSHOT</version> <name>aop-around-advice-example</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
步驟9: 創(chuàng)建名稱為 com.nhooo.service的包。
步驟10: 在上面的包中創(chuàng)建一個名為 BankService 的類。
在該類中,我們定義了一個名為 displayBalance()的方法。 它檢查帳號。如果帳號匹配則返回總金額,否則返回一條消息。
BankService.java
package com.nhooo.service; import org.springframework.stereotype.Service; @Service public class BankService { public void displayBalance(String accNum) { System.out.println("Inside displayBalance() method"); if(accNum.equals("12345")) { System.out.println("Total balance: 10,000"); } else { System.out.println("Sorry! wrong account number."); } } }
步驟11: 創(chuàng)建另一個名為 com.nhooo.aspect的包。
步驟12: 在上面的包中創(chuàng)建一個名為 BankAspect的類。
在下面的類中,我們定義了兩個名為 logDisplayingBalance()和 aroundAdvice()方法的方法。
BankAspect.java
package com.nhooo.aspect; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut; import org.springframework.stereotype.Component; //在應(yīng)用程序中啟用spring AOP功能 @Aspect @Component public class BankAspect { //顯示所有可用的方法,即將為所有方法調(diào)用通知 @Pointcut(value= "execution(* com.nhooo.service.BankService.*(..))") private void logDisplayingBalance() { } //聲明在方法與切入點表達式匹配之前和之后應(yīng)用的 around 通知 @Around(value= "logDisplayingBalance()") public void aroundAdvice(ProceedingJoinPoint jp) throws Throwable { System.out.println("方法調(diào)用前的aroundAdvice()方法" + jp.getSignature().getName() + " method"); try { jp.proceed(); } finally { } System.out.println("方法調(diào)用后的aroundAdvice()方法" + jp.getSignature().getName() + " method"); } }
步驟13: 打開 AopAroundAdviceExampleApplication.java 文件,并添加注解 @EnableAspectJAutoProxy。
該注解啟用支持處理標有AspectJ的 @Aspect 批注的組件。它與@Configuration批注一起使用。
ConfigurableApplicationContext 是一個接口,除了ApplicationContext中的應(yīng)用程序上下文客戶端方法外,還提供了用于配置應(yīng)用程序上下文的工具。
AopAroundAdviceExampleApplication.java
package com.nhooo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.EnableAspectJAutoProxy; import com.nhooo.service.BankService; @SpringBootApplication //@EnableAspectJAutoProxy 注解支持處理標記為@Aspect annotation的組件。它類似于xml配置中的標記。 @EnableAspectJAutoProxy public class AopAroundAdviceExampleApplication { public static void main(String[] args) { ConfigurableApplicationContext context = SpringApplication.run(AopAroundAdviceExampleApplication.class, args); //從應(yīng)用程序上下文獲取employee對象。 BankService bank = context.getBean(BankService.class); //顯示帳戶余額 String accnumber = "12345"; bank.displayBalance(accnumber); //關(guān)閉context對象 context.close(); } }
創(chuàng)建所有包和類之后,項目目錄如下所示:
現(xiàn)在,運行應(yīng)用程序。
步驟14: 打開 AopAroundAdviceExampleApplication.java 并將其作為Java運行應(yīng)用程序。
在上面的輸出中,我們看到了方法aroundAdvice()會調(diào)用兩次。首先,在執(zhí)行 displayBalance()方法之前,其次,在執(zhí)行 displayBalance()方法之后。稱為咨詢。