亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java?SpringAOP技術中注解方式是什么

發布時間:2022-03-03 14:44:35 來源:億速云 閱讀:115 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“Java SpringAOP技術中注解方式是什么”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Java SpringAOP技術中注解方式是什么”這篇文章吧。

1.配置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:context="http://www.springframework.org/schema/context"
       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/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    <!--開啟注解掃描-->
    <context:component-scan base-package="com.qcby"></context:component-scan>
</beans>

2.配置注解

package com.qcby;
import org.springframework.stereotype.Component;
@Component(value = "user")
public class User {
    //連接點/切入點
    public void add(){
        System.out.println("add......");
    }
}

給切面類添加注解 @Aspect,編寫增強的方法,使用通知類型注解聲明

@Component
@Aspect  //生成代理對象
public class UserProxy {
}

3.配置文件中開啟自動代理

<?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:context="http://www.springframework.org/schema/context"
       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/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    <!--開啟掃描-->
    <context:component-scan base-package="com.qcby"></context:component-scan>
    <!--開啟Aspect生成代理對象-->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>

4.通知類型注解

@Before -- 前置通知

@AfterReturing -- 后置通知

@Around -- 環繞通知(目標對象方法默認不執行的,需要手動執行)

@After -- 最終通知

@AfterThrowing -- 異常拋出通知

package com.qcby;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;
@Component
@Aspect  //生成代理對象
public class UserProxy {
    //增強/通知  ---》前置通知
    @Before(value = "execution(public void com.qcby.User.add())")
    public void before(){
        System.out.println("前置通知.............");
    }
    // 環繞通知
    @Around(value = "execution(public void com.qcby.User.add())")
    public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        System.out.println("環繞前置.............");
        //  執行被增強的方法
        proceedingJoinPoint.proceed();
        System.out.println("環繞后置.............");
    }
    // 最終通知
    @After(value = "execution(public void com.qcby.User.add())")
    public void after() {
        System.out.println("最終通知.............");
    }
    //后置通知
    @AfterReturning(value = "execution(public void com.qcby.User.add())")
    public void afterReturning() {
        System.out.println("后置通知.............");
    }
    //異常通知
    @AfterThrowing(value = "execution(public void com.qcby.User.add())")
    public void afterThrowing() {
        System.out.println("出錯了.............");
    }
}

5.測試類

package com.qcby.test;
import com.qcby.User;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class UserTest {
    @Test
    public void aopTest1(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("SpringConfig.xml");
        User user = (User) applicationContext.getBean("user");
        user.add();
    }
}

6.結果 

Java?SpringAOP技術中注解方式是什么

Java?SpringAOP技術中注解方式是什么

Java?SpringAOP技術中注解方式是什么

Java?SpringAOP技術中注解方式是什么

Java?SpringAOP技術中注解方式是什么

以上是“Java SpringAOP技術中注解方式是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禹城市| 玉田县| 房产| 中宁县| 郓城县| 蒲江县| 洪泽县| 诏安县| 延庆县| 临潭县| 万载县| 玉环县| 隆子县| 黎川县| 三亚市| 公安县| 温泉县| 安丘市| 旅游| 嵊泗县| 邹平县| 莎车县| 高尔夫| 临澧县| 宣化县| 盐城市| 宁化县| 穆棱市| 江阴市| 怀柔区| 桃园市| 九寨沟县| 隆子县| 炎陵县| 固安县| 共和县| 龙山县| 辽阳市| 称多县| 长葛市| 石林|