溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring如何基于XML實(shí)現(xiàn)Aop

發(fā)布時(shí)間:2021-07-19 09:11:47 來(lái)源:億速云 閱讀:153 作者:chen 欄目:開(kāi)發(fā)技術(shù)

本篇內(nèi)容介紹了“Spring如何基于XML實(shí)現(xiàn)Aop”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

目錄
  • 項(xiàng)目結(jié)構(gòu)

  • 具體步驟

    • 1、創(chuàng)建maven 項(xiàng)目 導(dǎo)入依賴(lài) 創(chuàng)建好項(xiàng)目結(jié)構(gòu)

    • 2、寫(xiě)一個(gè)TestDao接口 及實(shí)現(xiàn)類(lèi)

    • 3、編寫(xiě)切面類(lèi)

    • 測(cè)試


項(xiàng)目結(jié)構(gòu)

Spring如何基于XML實(shí)現(xiàn)Aop

具體步驟

1、創(chuàng)建maven 項(xiàng)目 導(dǎo)入依賴(lài) 創(chuàng)建好項(xiàng)目結(jié)構(gòu)

 <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.18</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.4</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>5.3.4</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>5.3.4</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-expression</artifactId>
            <version>5.3.4</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>5.3.4</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.9.6</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.9.6</version>
        </dependency>
    </dependencies>

2、寫(xiě)一個(gè)TestDao接口 及實(shí)現(xiàn)類(lèi)

/**
 * @version 1.0
 * @author: crush
 * @date: 2021-03-05 10:26
 */
public interface TestDao {
    public void sayHello();
    public void save();
    public void modify();
    public void delete();
}
/**
 * @version 1.0
 * @author: crush
 * @date: 2021-03-05 10:27
 */
public class TestDaoImpl implements TestDao {
    public void sayHello() {
        System.out.println("正在執(zhí)行的方法-->武漢加油!中國(guó)加油!");
    }
    public void save() {
        System.out.println("正在執(zhí)行的方法-->保存");
    }
    public void modify() {
        System.out.println("正在執(zhí)行的方法-->修改");
    }
    public void delete() {
        System.out.println("正在執(zhí)行的方法-->刪除");
    }
}

3、編寫(xiě)切面類(lèi)

/**
 * @version 1.0
 * @author: crush
 * @date: 2021-03-10 17:12
 */
public class MyAspectXml {
    /**
     * 前置通知 使用JoinPoint 接口作為參數(shù)獲得目標(biāo)對(duì)象的信息
     **/
    public void before(JoinPoint jp){
        System.out.print("前置通知:模擬權(quán)限控制   ");
        System.out.println("目標(biāo)對(duì)象:"+jp.getTarget()+",被增強(qiáng)的方法:"+jp.getSignature().getName());
    }
    public void afterReturning(JoinPoint jp){
        System.out.print("后置返回通知:"+"模擬刪除臨時(shí)文件"  );
        System.out.println(",被增強(qiáng)的方法"+jp.getSignature().getName());
    }
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("環(huán)繞開(kāi)始:執(zhí)行目標(biāo)方法前,模擬開(kāi)啟事務(wù)");
        Object obj = pjp.proceed();
        System.out.println("環(huán)繞結(jié)束:執(zhí)行目標(biāo)方法后,模擬關(guān)閉事務(wù)");
        return obj;
    }
    public void except(Throwable throwable){
        System.out.println("異常通知:"+"程序執(zhí)行異常"+throwable.getMessage());
    }
    public void after(){
        System.out.println("最終通知:釋放資源");
    }
}```
### 4、application.xml文件
```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"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop
       https://www.springframework.org/schema/aop/spring-aop.xsd
       http://www.springframework.org/schema/context
       https://www.springframework.org/schema/context/spring-context.xsd">
    <!--
    <aop:aspectj-autoproxy />
    聲明自動(dòng)為spring容器中那些配置@aspectJ切面的bean創(chuàng)建代理,織入切面。
    proxy-target-class屬性,默認(rèn)為false,表示使用jdk動(dòng)態(tài)代理織入增強(qiáng),
    為true時(shí): 表示使用CGLib動(dòng)態(tài)代理技術(shù)織入增強(qiáng)。
    -->
    <aop:aspectj-autoproxy proxy-target-class="true"/>
    <bean id="testDaoImpl" class="com.dao.TestDaoImpl"/>
    <bean id="myAspectXML" class="com.aspect.MyAspectXml"/>
<!--    <bean id="myAspectXML2" class="com.aspect.MyAspectXml2"/>-->
    <!--
        補(bǔ)充:<aop:pointcut>如果位于<aop:aspect>元素中,則命名切點(diǎn)只能被當(dāng)前<aop:aspect>內(nèi)定義的元素訪問(wèn)到,
        為了能被整個(gè)<aop:config>元素中定義的所有增強(qiáng)訪問(wèn),則必須在<aop:config>下定義切點(diǎn)。
    -->
    <aop:config>
        <!--切入點(diǎn)  execution 表達(dá)式 通過(guò)這個(gè)表達(dá)式篩選連接點(diǎn) -->
        <aop:pointcut id="myPointCut" expression="execution(* com.dao.*.*(..))"/>
        <aop:aspect ref="myAspectXML">
			           <!--aop:after 是表示 這個(gè)方法是那種通知類(lèi)型after 是方法之后     
           method="after" 這個(gè)after是切面類(lèi)中的方法  -->
            <aop:after method="after" pointcut-ref="myPointCut"/>
            <aop:before method="before" pointcut-ref="myPointCut"/>
            <aop:after-returning method="afterReturning" pointcut-ref="myPointCut"/>
            <aop:after-throwing method="except" throwing="throwable" pointcut-ref="myPointCut"/>
            <aop:around method="around" pointcut-ref="myPointCut"/>
        </aop:aspect>
    </aop:config>
</beans>

測(cè)試

@Test
    public void Test(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
        TestDao testDao = applicationContext.getBean("testDaoImpl", TestDaoImpl.class);
        testDao.save();
        /**
         * 輸出:
         * 前置通知:模擬權(quán)限控制   目標(biāo)對(duì)象:com.dao.TestDaoImpl@704f1591,被增強(qiáng)的方法:save
         * 環(huán)繞開(kāi)始:執(zhí)行目標(biāo)方法前,模擬開(kāi)啟事務(wù)
         * 正在執(zhí)行的方法-->保存
         * 環(huán)繞結(jié)束:執(zhí)行目標(biāo)方法后,模擬關(guān)閉事務(wù)
         * 后置返回通知:模擬刪除臨時(shí)文件,被增強(qiáng)的方法save
         * 最終通知:釋放資源
         */
    }

“Spring如何基于XML實(shí)現(xiàn)Aop”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI