您好,登錄后才能下訂單哦!
本篇內容介紹了“Sping aop面向切面編程通知的方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
一、創建兩個接口:
接口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面向切面編程通知的方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。