您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么用Spring框架實現AOP的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么用Spring框架實現AOP文章都會有所收獲,下面我們一起來看看吧。
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 ); } }
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("查詢了一個用戶"); } }
<?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”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。