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

溫馨提示×

溫馨提示×

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

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

Sping aop面向切面編程通知的方法是什么

發布時間:2021-12-27 17:04:47 來源:億速云 閱讀:117 作者:iii 欄目:云計算

本篇內容介紹了“Sping aop面向切面編程通知的方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

建議先看看:java靜態代理和動態代理

一、創建兩個接口:

接口TestServiceInter:

package com.hubin.aop;

public interface TestServiceInter {

    public void sayHello();
}

接口TestServiceInter2:

package com.hubin.aop;

public interface TestServiceInter2 {

    public void sayBye();
}

二、創建被代理類Test1Service 該類實現了上面的兩個接口

package com.hubin.aop;
/**
 * 
 * 
 * 被代理類,相當于我自己干事情
 * @author Administrator
 *
 */

public class Test1Service implements TestServiceInter,TestServiceInter2 {

    private String name;
    
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public void sayHello() {
        // TODO Auto-generated method stub
        System.out.println("hi "+name);
    }

    public void sayBye() {
        // TODO Auto-generated method stub
        System.out.println("bye "+name);
    }

}

三、創建前置通知MyMethodBeforeAdvice類

package com.hubin.aop;

import java.lang.reflect.Method;

import org.springframework.aop.MethodBeforeAdvice;

/**
 * 前置通知類,類似于中介公司實現我交代的事情之前做的一些事情
 * @author Administrator
 *
 */
public class MyMethodBeforeAdvice implements MethodBeforeAdvice{

    /**
     * method: 被調用方法名字
     * args: 給method傳遞的參數
     * target: 目標對象
     */
    public void before(Method method, Object[] args, Object target)
            throws Throwable {
        // TODO Auto-generated method stub
        System.out.println("前置通知被調用");

    }

}

四、創建后置通知類MyMethodAfterAdvice :

package com.hubin.aop;

import java.lang.reflect.Method;

import org.springframework.aop.AfterReturningAdvice;

/**
 * 后置通知
 * @author Administrator
 *
 */
public class MyMethodAfterAdvice implements AfterReturningAdvice{

    @Override
    public void afterReturning(Object returnValue, Method method,
            Object[] args, Object target) throws Throwable {
        // TODO Auto-generated method stub
        System.out.println("后置通知被調用");
        
    }

}

五、創建環繞通知類MyMethodAroundAdvice:

package com.hubin.aop;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;

public class MyMethodAroundAdvice implements MethodInterceptor {

    @Override
    public Object invoke(MethodInvocation arg0) throws Throwable {
        // TODO Auto-generated method stub
        System.out.println("調用環繞通知前");
        arg0.proceed();//這句話不調用的話,被代理類的方法不會運行
        System.out.println("調用環繞通知后");
        return null;
    }


}

六、創建異常通知MyMethodThrowsAdvice:

package com.hubin.aop;

import java.lang.reflect.Method;

import org.springframework.aop.ThrowsAdvice;
/**
 * 異常對象
 * @author Administrator
 *
 */
public class MyMethodThrowsAdvice implements ThrowsAdvice {
    public void afterThrowing(Method m,Object []obj,Object target,Exception e){
        System.out.println("出事了"+e.getMessage());
    }

}

七、創建配置文件beans.xml(文件位置在包com/hubin/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:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">


<!-- 配置被代理的對象 -->
<bean id="test1Service" class="com.hubin.aop.Test1Service">
<property name="name" value="王大錘" />
</bean>
<!-- 配置前置通知 -->
<bean id="myMethodBeforeAdvice" class="com.hubin.aop.MyMethodBeforeAdvice" /> 

<!-- 配置后置通知 -->
<bean id="myMethodAfterAdvice" class="com.hubin.aop.MyMethodAfterAdvice" />

<!-- 配置環繞通知 -->
<bean id="myMethodAroundAdvice" class="com.hubin.aop.MyMethodAroundAdvice"/>

<!-- 配置異常通知 -->

<bean id="myMethodThrowsAdvice" class="com.hubin.aop.MyMethodThrowsAdvice"/>

<!-- 配置代理對象(代理對象不需要我們自己寫,已經有現成的ProxyFactoryBean類存在了) -->
<bean id="proxyFactoryBean" class="org.springframework.aop.framework.ProxyFactoryBean">
<!-- 代理接口集 -->
<property name="proxyInterfaces">
    <list>
    <!--ProxyFactoryBean類會實現下列接口(必須是接口的全路徑)  -->
        <value>com.hubin.aop.TestServiceInter</value>
        <value>com.hubin.aop.TestServiceInter2</value>
    </list>
</property>

<!-- 把通知織入到代理對象相當于將通知和代理對象關聯  -->
<property name="interceptorNames">
<list>
    <!-- 必須和配置通知的ben的id對應值是相同的 -->
    <value>myMethodBeforeAdvice</value>
    <value>myMethodAfterAdvice</value>
    <value>myMethodAroundAdvice</value>
    <value>myMethodThrowsAdvice</value>
</list>
</property>

<!-- 配置被代理對象,ref必須和配置代理對象的id對應值相同-->
<property name="target" ref="test1Service"/>
</bean>
</beans>

八、隨便創建一個類用來做測試

package com.hubin.aop;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class AopTest {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        ApplicationContext ac=new ClassPathXmlApplicationContext("com/hubin/aop/beans.xml");
        TestServiceInter ts=(TestServiceInter) ac.getBean("proxyFactoryBean");
        ts.sayHello();
        //((TestServiceInter2)ts).sayBye();
        
    }

}

九、運行結果:

前置通知被調用
調用環繞通知前
hi 王大錘
調用環繞通知后
后置通知被調用
前置通知被調用
調用環繞通知前
bye 王大錘
調用環繞通知后
后置通知被調用

“Sping aop面向切面編程通知的方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

巴林右旗| 石嘴山市| 辽阳市| 都匀市| 新乐市| 莲花县| 东源县| 德令哈市| 辽阳市| 霍林郭勒市| 来凤县| 邵阳县| 泰和县| 苗栗市| 大余县| 宣威市| 金坛市| 湘潭市| 黄平县| 磐安县| 沁阳市| 河源市| 信宜市| 兴义市| 金沙县| 郁南县| 正阳县| 荣成市| 绥芬河市| 牡丹江市| 邯郸市| 陇西县| 邹城市| 濉溪县| 金塔县| 贵定县| 滁州市| 南充市| 东宁县| 株洲市| 聂拉木县|