欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

SpringAOP 設(shè)置注入的實現(xiàn)步驟

 更新時間:2021年05月07日 09:55:51   作者:Lachlan_Yang  
這篇文章主要介紹了SpringAOP 設(shè)置注入的實現(xiàn)步驟,幫助大家更好的理解和學習使用Spring框架,感興趣的朋友可以了解下

AOP_面向切面編程初步了解

讓我們先想象一個場景,你正在編寫一個項目,在開發(fā)過程中的多個模塊都有某段重復(fù)的代碼,于是你選擇將其抽象成一個方法,然后在需要的地方調(diào)用這個方法,當需要修改這段代碼時只需要修改這個方法就行。有一天,你的Boss給了新的需求,需要再抽象出一個方法,然后再在各個需要這個方法的模塊調(diào)用這個方法,這可能就讓你頭疼了,需要修改大量的代碼,于是會想,能不能不修改源代碼為系統(tǒng)業(yè)務(wù)添加某種功能呢?幸運的是,AOP可以很好的解決這個問題。

簡單介紹

AOP:保證開發(fā)者不修改源代碼的前提下,去為系統(tǒng)中的業(yè)務(wù)組件添加某種通用功能,本質(zhì)是由AOP框架修改業(yè)務(wù)組件的多個方法的源代碼,我們將其分為兩類:

  • 靜態(tài)AOP

AOP 框架在編譯階段對程序源代碼進行修改,生成了靜態(tài)的 AOP 代理類(生成的*.class文件已經(jīng)被改掉了,需要使用特定的編譯器),比如 AspectJ。

  • 動態(tài)AOP:

AOP 框架在運行階段對動態(tài)生成代理對象(在內(nèi)存中以 JDK 動態(tài)代理,或 CGlib 動態(tài)地生成 AOP 代理類),如 SpringAOP。

詳細說明

Spring 的通知類型

名稱 標簽 說明
前置通知 < aop:before > 用于配置前置通知。指定增強的方法在切入點方法之前執(zhí)行
后置通知 < aop:after-returning > 用于配置后置通知。指定增強的方法在切入點方法之后執(zhí)行
環(huán)繞通知 < aop:around > 用于配置環(huán)繞通知。指定增強的方法在切入點方法之前和之后都執(zhí)行
異常通知 < aop:throwing > 用于配置異常拋出通知。指定增強的方法在出現(xiàn)異常時執(zhí)行
最終通知 < aop:after > 用于配置最終通知。無論增強方式執(zhí)行是否有異常都會執(zhí)行

實戰(zhàn)演練

導(dǎo)入依賴包

    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.5</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>5.3.5</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.9.6</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/aopalliance/aopalliance -->
        <dependency>
            <groupId>aopalliance</groupId>
            <artifactId>aopalliance</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

創(chuàng)建一個增強類以及其接口

增強類接口:

public interface VisitService {
    //用于實現(xiàn)前置通知,后置通知,異常通知,最終通知
    void visit(String str) throws Exception;

    //用于實現(xiàn)環(huán)繞通知
    void around();
}

增強類:

public class VisitServiceImpl implements VisitService {
    //前置,后置,最終,異常通知的增強類
    public void visit(String str) throws Exception{
        System.out.println(str);
        if(!str.equalsIgnoreCase("agree")){
            throw new Exception("非法訪問");
        }
    }
    //環(huán)繞通知的增強類
    public void around() {
        System.out.println("環(huán)繞通知");
    }
}

創(chuàng)建一個切面類

public class VisitAspect {
    //前置通知
    public void visitBefore(JoinPoint joinPoint){
        System.out.println("口令:");
    }
    //最終通知,無論是否報錯,都執(zhí)行
    public void visitAfter(JoinPoint joinPoint){
        System.out.println("輸入完成");
    }
    //后置通知報錯不執(zhí)行
    public void visitSuccess(JoinPoint joinPoint){
        System.out.println("請求成功,歡迎");
    }
    //異常通知,報錯后執(zhí)行
    public void visitThrow(JoinPoint joinPoint, Throwable ex){
        System.out.println("請求失敗,拒絕");
    }
    //環(huán)繞通知,如果報錯只執(zhí)行前一句
    public Object visitAround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
        System.out.println("-------環(huán)繞-------");
        Object obj = proceedingJoinPoint.proceed();
        System.out.println("-------環(huán)繞-------");
        return obj;
    }
}

配置xml文件,需要添加第三方約束

    <bean id="userDao" class="Spring_AOP.service.impl.VisitServiceImpl"></bean>
    <bean id="aspect" class="Spring_AOP.service.VisitAspect"></bean>
    
    <aop:config>
        <aop:pointcut id="pointcut" expression="execution(* Spring_AOP.service.impl.VisitServiceImpl.visit(..))"/>
        <aop:pointcut id="pointcut1" expression="execution(* Spring_AOP.service.impl.VisitServiceImpl.around())"/>
        <aop:aspect ref="aspect">
             <aop:before method="visitBefore" pointcut-ref="pointcut"></aop:before>
             <aop:after method="visitAfter" pointcut-ref="pointcut"></aop:after>
             <aop:after-returning method="visitSuccess" pointcut-ref="pointcut"></aop:after-returning>
             <aop:around method="visitAround" pointcut-ref="pointcut1"></aop:around>
             <!-- 報錯后執(zhí)行aop:after-throwing -->
             <aop:after-throwing method="visitThrow" pointcut-ref="pointcut" throwing="ex"></aop:after-throwing>
         </aop:aspect>
    </aop:config>

注,對于execution()
1、execution(): 表達式主體 (必須加上execution)。
2、第一個* 號:表示返回值類型,* 號表示所有的類型。
3、包名:表示需要攔截的包名,后面的兩個句點表示當前包和當前包的所有子包,cn.smd.service.impl包、子孫包下所有類的方法。
4、第二個* 號:表示類名,* 號表示所有的類。
5、* (..):最后這個星號表示方法名,* 號表示所有的方法,后面括弧里面表示方法的參數(shù),兩個句點表示任何參數(shù)。
書寫的注意事項:execution(* cn.smd.service.impl..(..))

創(chuàng)建一個測試類

 public class visitTest {
    @Test
    public void VisitTest(){
        ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext_AOP.xml");
        VisitService visitService = app.getBean(VisitService.class);
        try {
            visitService.visit("agree");
        } catch (Exception e) {
            e.printStackTrace();
        }
        try {
            visitService.visit("ok");
        } catch (Exception e) {
            e.printStackTrace();
        }
        visitService.around();
    }
}

測試運行

口令:
agree
請求成功,歡迎
輸入完成
口令:
ok
請求失敗,拒絕
輸入完成
-------環(huán)繞-------
環(huán)繞通知
-------環(huán)繞-------

總結(jié)

  • SpringAOP進一步降低組件的耦合,實現(xiàn)解耦合
  • 可以更好的監(jiān)控程序,進行權(quán)限攔截
  • 注:學習AOP設(shè)置注入時需要注意出現(xiàn)報錯時各個通知的狀態(tài)

以上就是SpringAOP 設(shè)置注入的實現(xiàn)步驟的詳細內(nèi)容,更多關(guān)于SpringAOP 設(shè)置注入的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評論