1. 新建類,不用實現
1.1 類中方法名任意java
public class MyAdvice { public void mybefore(String name1,int age1){ System.out.println("前置"+name1 ); } public void mybefore1(String name1){ System.out.println("前置:"+name1); } public void myaftering(){ System.out.println("後置2"); } public void myafter(){ System.out.println("後置1"); } public void mythrow(){ System.out.println("異常"); } public Object myarround(ProceedingJoinPoint p) throws Throwable{ System.out.println("執行環繞"); System.out.println("環繞-前置"); Object result = p.proceed(); System.out.println("環繞後置"); return result; }
1.2 配置spring 配置文件
1.2.1 <aop:after/> 後置通知,是否出現異常都執行
1.2.2 <aop:after-returing/> 後置通知,只有當切點正確執行時
執行
1.2.3 <aop:after/> 和<aop:after-returing/> 和
<aop:after-throwing/>執行順序和配置順序有關
1.2.4 execution() 括號不能擴上args
1.2.5 中間使用and 不能使用&& 由spring 把and 解析成&&
1.2.6 args(名稱) 名稱自定義的.順序和demo1(參數,參數)對應
1.2.7 <aop:before/> arg-names=」 名稱」 名稱來源於
expression=」」 中args(),名稱必須同樣
1.2.7.1 args() 有幾個參數,arg-names 裏面必須有幾個參數spring
1.2.7.2 arg-names=」」 裏面名稱必須和通知方法參數名對應express
<aop:config> <aop:aspect ref="myadvice"> <aop:pointcut expression="execution(* com.bjsxt.test.Demo.demo1(String,int)) and args(name1,age1)" id="mypoint"/> <aop:pointcut expression="execution(* com.bjsxt.test.Demo.demo1(String)) and args(name1)" id="mypoint1"/> <aop:before method="mybefore" pointcut-ref="mypoint" arg-names="name1,age1"/> <aop:before method="mybefore1" pointcut-ref="mypoint1" arg-names="name1"/> <!-- <aop:after method="myafter" pointcut-ref="mypoint"/> <aop:after-returning method="myaftering" pointcut-ref="mypoint"/> <aop:after-throwing method="mythrow" pointcut-ref="mypoint"/> <aop:around method="myarround" pointcut-ref="mypoint"/>--> </aop:aspect> </aop:config>