91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

瓮安县| 蛟河市| 甘孜县| 开原市| 济宁市| 吉首市| 屯门区| 乐陵市| 阿图什市| 成都市| 新巴尔虎左旗| 太白县| 丹江口市| 宕昌县| 慈溪市| 德保县| 赣州市| 彝良县| 乌兰县| 新民市| 鸡西市| 兴山县| 枝江市| 兴业县| 抚州市| 连云港市| 长垣县| 九江县| 壶关县| 梅河口市| 海伦市| 神池县| 米易县| 兴化市| 墨玉县| 济阳县| 新闻| 垦利县| 安西县| 巨野县| 荣昌县|