Spring07:AOP

碼農灬鑫發表於2020-12-26

Spring07:AOP

上一篇說完了代理模式,接下來說說AOP

概念

AOP(Aspect Oriented Programming)意為:面向切面程式設計,通過預編譯方式和執行期動態代理實現程式功能的統一維護的一種技術。AOP是OOP的延續,是軟體開發中的一個熱點,也是Spring框架中的一個重要內容,是函數語言程式設計的一種衍生範型。利用AOP可以對業務邏輯的各個部分進行隔離,從而使得業務邏輯各部分之間的耦合度降低,提高程式的可重用性,同時提高了開發的效率。

在這裡插入圖片描述
就相當於在原來的業務中加入一個業務。

Aop在Spring中的作用

提供宣告式事務;允許使用者自定義切面

以下名詞需要了解下:

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

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

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

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

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

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

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

這一些概念可以簡單的記一下,在接下里的總結中都可以看到,再去理解

在這裡插入圖片描述
SpringAOP中,通過Advice定義橫切邏輯,Spring中支援5種型別的Advice:
在這裡插入圖片描述
即 Aop 在 不改變原有程式碼的情況下 , 去增加新的功能。
這上面講的都是概念,有些地方可能不太理解,問題不大,看程式碼就懂了

使用Spring實現Aop

導包(可以去maven找最新的)

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

第一種方式:通過Spring API實現

1.編寫我們的業務介面和實現類

public interface UserService {
 
    public void add();
 
    public void delete();
 
    public void update();
 
    public void search();
 
}
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("查詢使用者");
    }
}

2.然後去寫我們的增強類 , 我們編寫兩個 , 一個前置增強 一個後置增強

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);
    }
}

3.去spring的檔案中註冊 , 並實現aop切入實現 , 注意匯入約束 .

<?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">
 
    <!--註冊bean-->
    <bean id="userService" class="com.pwx.service.UserServiceImpl"/>
    <bean id="log" class="com.pwx.log.Log"/>
    <bean id="afterLog" class="com.pwx.log.AfterLog"/>
    <!--aop的配置-->
    <aop:config>
        <!--切入點  expression:表示式匹配要執行的方法-->
        <!--
        	1、execution(): 表示式主體 (必須加上execution)。
        	2、第一個*號:表示返回值型別,*號表示所有的型別。

 			3、包名:表示需要攔截的包名,後面的兩個句點表示當前包和當前包的所有子包,
 			cn.smd.service.impl包、子孫包下所有類的方法。

 			4、第二個*號:表示類名,*號表示所有的類。

 			5、*(..):最後這個星號表示方法名,*號表示所有的方法,後面括弧裡面表示方法的引數,
 			兩個句點表示任何引數。

			書寫的注意事項:execution(* cn.smd.service.impl.*.*(..))
			
			我因為只有一個類,就沒寫*了。
        -->
        <aop:pointcut id="pointcut" expression="execution(* com.pwx.service.UserServiceImpl.*(..))"/>
        <!--執行環繞; advice-ref執行方法 . pointcut-ref切入點-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>
</beans>

4.測試(還是三部曲)

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

Aop的重要性 : 很重要 . 一定要理解其中的思路 , 主要是思想的理解這一塊 .

Spring的Aop就是將公共的業務 (日誌 , 安全等) 和領域業務結合起來 , 當執行領域業務時 , 將會把公共業務加進來 . 實現公共業務的重複利用 . 領域業務更純粹 , 程式猿專注領域業務 , 其本質還是動態代理。

第二種方式:自定義類來實現Aop

1.實體類不變,自己再寫一個切入類

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

2.Spring配置

<!--第二種方式自定義實現-->
<!--註冊bean-->
<bean id="diy" class="com.pwx.config.DiyPointcut"/>
<!--aop的配置-->
<aop:config>
    <!--第二種方式:使用AOP的標籤實現-->
    <aop:aspect ref="diy">
        <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>

3.測試:

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

第三種方式:使用註解實現

1.編寫一個註解實現的增強類

package com.kuang.config;
 
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);
    }
}

2.在Spring配置檔案中,註冊bean,並增加支援註解的配置

<!--第三種方式:註解實現-->
<bean id="annotationPointcut" class="com.pwx.config.AnnotationPointcut"/>
<aop:aspectj-autoproxy/>

3.測試,和之前一樣

總結:AOP是Spring的重要思想之一,是必須掌握的思想。從代理到AOP,一定要結合著去理解,程式碼編寫不難,難的是思想的理解,結合一下生活實際,我們可以很好的去體會這種思想以及他的好處。

最後

以上所有是通過在嗶哩嗶哩中遇見狂神說,狂神老師學習的,在這裡表示熱衷的感謝,又不懂的大家也可以去看看他的視訊。
在這裡插入圖片描述
這是他相關的部落格

這是他的主頁

相關文章