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

溫馨提示×

溫馨提示×

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

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

怎么用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

    修水县| 吴堡县| 章丘市| 通城县| 桃园县| 桂平市| 靖远县| 安化县| 重庆市| 镇原县| 澎湖县| 南和县| 凉城县| 汝城县| 沾化县| 汾阳市| 剑川县| 合江县| 汝阳县| 南开区| 郴州市| 扬中市| 琼中| 黔江区| 奇台县| 修水县| 汉中市| 邹平县| 徐水县| 桐柏县| 西乡县| 齐河县| 牟定县| 准格尔旗| 株洲县| 如东县| 德庆县| 元朗区| 米泉市| 建平县| 友谊县|