1. 程式人生 > 其它 >三種方式實現AOP

三種方式實現AOP

AOP 概念

AOP,Aspect Oriented Programming,面向切面程式設計。

是通過預編譯方式和執行期動態代理實現程式功能的統一維護的一種技術。

AOP可以讓業務邏輯各部分之間的耦合度降低,提高程式的可重用性,同時提高了開發的效率。

Spring中的AOP

  • 橫切關注點:跨越應用程式多個模組的方法或功能。即是,與我們業務邏輯無關的,但是我們需要關注的部分,就是橫切關注點。如日誌 , 安全 , 快取 , 事務等等 ....

  • 切面(ASPECT):橫切關注點 被模組化 的特殊物件。即,它是一個類。

  • 通知(Advice):切面必須要完成的工作。即,它是類中的一個方法。

  • 目標(Target):被通知物件。

  • 代理(Proxy):向目標物件應用通知之後建立的物件。

  • 切入點(PointCut):切面通知 執行的 “地點”的定義。

  • 連線點(JointPoint):與切入點匹配的執行點。

SpringAOP中,通過Advice定義橫切邏輯,Spring中支援5種類型的Advice

前置通知,在方法前執行

後置通知,在方法後執行

環繞通知,在方法前後執行

異常丟擲通知,在方法丟擲異常時執行  

引介通知,在類中新增方法屬性時執行

使用Spring實現AOP

匯入AOP織入依賴包:

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.4</version> </dependency>

方式1 使用Spring API

業務實現類:

public class UserServiceImpl implements UserService{

   @Override
   public void add() {
       System.out.println(
"增加使用者"); } @Override public void delete() { System.out.println("刪除使用者"); } @Override public void update() { System.out.println("更新使用者"); } @Override public void search() { System.out.println("查詢使用者"); } }
View Code

增強類-前置增強:

public class Log implements MethodBeforeAdvice {

   //method : 要執行的目標物件的方法
   //objects : 被呼叫的方法的引數
   //Object : 目標物件
   @Override
   public void before(Method method, Object[] objects, Object o) throws Throwable {
       System.out.println( o.getClass().getName() + "的" + method.getName() + "方法被執行了");
  }
}

增強類-後置增強:

public class AfterLog implements AfterReturningAdvice {
   //returnValue 返回值
   //method被呼叫的方法
   //args 被呼叫的方法的物件的引數
   //target 被呼叫的目標物件
   @Override
   public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
       System.out.println("執行了" + target.getClass().getName()
       +"的"+method.getName()+"方法,"
       +"返回值:"+returnValue);
  }
}

在spring的檔案中註冊Bean

   <!--註冊bean-->
   <bean id="userService" class="com.hwl.service.UserServiceImpl"/>
   <bean id="log" class="com.hwl.log.Log"/>
   <bean id="afterLog" class="com.hwl.log.AfterLog"/>

在spring的檔案中配置aop切入

    <!--aop的配置-->
   <aop:config>
       <!--切入點 expression:表示式匹配要執行的方法-->
       <aop:pointcut id="pointcut" expression="execution(* com.hwl.service.UserServiceImpl.*(..))"/>
       <!--執行環繞; advice-ref執行方法 . pointcut-ref切入點-->
       <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
       <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
   </aop:config>

執行測試:

@Test
   public void test(){
       ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
       UserService userService = (UserService) context.getBean("userService");
       userService.search();
  }

Spring的Aop就是將公共業務 (日誌 , 安全等) 和領域業務結合起來 , 當執行領域業務時 , 將會把公共業務加進來

實現公共業務的重複利用,領域業務更純粹,開發時只需要專注領域業務 , 其本質是動態代理。

方式2 自定義類來實現AOP

業務類還是方式1中的業務類。

寫一個切入點:

public class MyPointcut {

   public void before(){
       System.out.println("---------方法執行前---------");
  }
   public void after(){
       System.out.println("---------方法執行後---------");
  }
   
}

spring配置

<!--註冊bean-->
<bean id="myPointcut" class="com.hwl.config.MyPointcut"/>

<!--aop的配置-->
<aop:config>
   <!--第二種方式:使用AOP的標籤實現-->
   <aop:aspect ref="myPointcut">
       <aop:pointcut id="diyPonitcut" expression="execution(* com.kuang.service.UserServiceImpl.*(..))"/>
       <aop:before pointcut-ref="diyPonitcut" method="before"/>
       <aop:after pointcut-ref="diyPonitcut" method="after"/>
   </aop:aspect>
</aop:config>

測試一下:

public class MyTest {
   @Test
   public void test(){
       ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
       UserService userService = (UserService) context.getBean("userService");
       userService.add();
  }
}

方式3 通過註解實現AOP

1.寫增強類

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class AnnotationPointcut {
   @Before("execution(* com.kuang.service.UserServiceImpl.*(..))")
   public void before(){
       System.out.println("---------方法執行前---------");
  }

   @After("execution(* com.kuang.service.UserServiceImpl.*(..))")
   public void after(){
       System.out.println("---------方法執行後---------");
  }

   @Around("execution(* com.kuang.service.UserServiceImpl.*(..))")
   public void around(ProceedingJoinPoint jp) throws Throwable {
       System.out.println("環繞前");
       System.out.println("簽名:"+jp.getSignature());
       //執行目標方法proceed
       Object proceed = jp.proceed();
       System.out.println("環繞後");
       System.out.println(proceed);
  }
}

Spring配置檔案註冊bean

<bean id="annotationPointcut" class="com.hwl.config.AnnotationPointcut"/>

另外配置檔案中還有加:

<aop:aspectj-autoproxy/>

aop:aspectj-autoproxy:宣告自動為spring容器中那些配置@aspectJ切面的bean建立代理,織入切面。

<aop:aspectj-autoproxy/> 的proxy-target-class屬性

預設為false,表示使用jdk動態代理織入增強

當配為<aop:aspectj-autoproxypoxy-target-class="true"/>時,表示使用CGLib動態代理技術織入增強