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

溫馨提示×

溫馨提示×

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

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

怎么用Spring框架實現AOP

發布時間:2022-09-05 09:38:24 來源:億速云 閱讀:129 作者:iii 欄目:開發技術

這篇文章主要介紹了怎么用Spring框架實現AOP的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么用Spring框架實現AOP文章都會有所收獲,下面我們一起來看看吧。

    第一種AOP實現方式

    AfterLog

    package com.xxx.demo.service1;
    
    import org.junit.After;
    import org.springframework.aop.AfterReturningAdvice;
    
    import java.lang.reflect.Method;
    
    public class AfterLog implements AfterReturningAdvice {
        @Override
        //returnValue:返回值
        public void afterReturning(Object returnValue, Method method, Object[] objects, Object o1) throws Throwable {
            System.out.println(
                    "執行了"+method.getName()+"返回的結果:"+returnValue
            );
        }
    }

    Log

    package com.xxx.demo.service1;
    
    import org.springframework.aop.MethodBeforeAdvice;
    
    import java.lang.reflect.Method;
    
    //前置通知
    public class log implements MethodBeforeAdvice {
        @Override
        //method:要執行的目標對象的方法 args:參數 target:目標讀寫
        public void before(Method method, Object[] args, Object target) throws Throwable {
            System.out.println(target.getClass().getName()+"的"+method.getName()+"被執行了");
        }
    }

    配置文件

    applicationContext.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"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           https://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            https://www.springframework.org/schema/aop/spring-aop.xsd">
    
    <!--    注冊bean-->
        <bean id="userService" class="com.xxx.demo.service1.UserServicelmp"></bean>
        <bean id="log" class="com.xxx.demo.service1.log"></bean>
        <bean id="afterLog" class="com.xxx.demo.service1.AfterLog"></bean>
    
    
    <!--    配置aop:需要導入aop的約束-->
        <aop:config>
            <!--        切入點:expression:表達式,execution(要執行的位置!* * * *)-->
            <aop:pointcut id="pointcut" expression="execution(* com.xxx.demo.service1.UserServicelmp.*(..))"/>
    
    <!--        執行環繞增加  把log的類添加到切入點里面-->
            <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
            <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"></aop:advisor>
        </aop:config>
    </beans>

    實例調用

    package com.xxx.demo.service1;
    
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class MyTest {
        public static void main(String[] args) {
            ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
            //動態代理代理的是接口
            UserService userService =(UserService) context.getBean("userService");
            userService.add();
            userService.delete();
            userService.select();
            userService.update();
        }
    }

    定義接口

    package com.xxx.demo.service1;
    
    public class UserServicelmp 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 select() {
            System.out.println("查詢了一個用戶");
        }
    }

    怎么用Spring框架實現AOP

    第二種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
           https://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            https://www.springframework.org/schema/aop/spring-aop.xsd">
    
    <!--    注冊bean-->
        <bean id="userService" class="com.xxx.demo.service1.UserServicelmp"></bean>
        <bean id="log" class="com.xxx.demo.service1.log"></bean>
        <bean id="afterLog" class="com.xxx.demo.service1.AfterLog"></bean>
    <!--    方式二:自定義類-->
        <bean id="diy" class="com.xxx.demo.service1.DiyPointCut"></bean>
        <aop:config>
    <!--        自定義切面 ref 要引用的類-->
            <aop:aspect ref="diy">
    <!--            切入點-->
                <aop:pointcut id="point" expression="execution(* com.xxx.demo.service1.UserServicelmp.*(..))"/>
    <!--                通知-->
                <aop:before method="before" pointcut-ref="point"></aop:before>
                <aop:after method="after" pointcut-ref="point"></aop:after>
            </aop:aspect>
        </aop:config>
    </beans>

    怎么用Spring框架實現AOP

    關于“怎么用Spring框架實現AOP”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么用Spring框架實現AOP”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

    向AI問一下細節

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

    AI

    保山市| 唐山市| 玉林市| 阳城县| 栖霞市| 玛沁县| 开原市| 弋阳县| 东光县| 瑞安市| 比如县| 山西省| 保亭| 武邑县| 潮安县| 西华县| 铜山县| 平顺县| 博白县| 全椒县| 盐源县| 桦甸市| 徐州市| 红河县| 黑水县| 宁阳县| 建平县| 兰州市| 房产| 东方市| 金华市| 呈贡县| 土默特右旗| 微博| 邵东县| 永和县| 富顺县| 牡丹江市| 田林县| 新源县| 西藏|