面向切面編程。經過預編譯的方式和運行期動態代理實現程序功能的統一維護的一種技術。AOP是OOP的延續,是軟件開發中的一個熱點,也是Spring框架中的一個重要內容,是函數式編程的一種衍生泛型,利用AOP能夠對業務邏輯的各個部分進行隔離,從而使業務邏輯各個部分的耦合度下降,提升程序的可重用性,同時提升了開發效率。java
通知類型 | 鏈接點 | 實現接口 |
---|---|---|
前置通知 | 方法前 | MethodBeforeAdvice |
後置通知 | 方法後 | AfterReturningAdvice |
環繞通知 | 方法先後 | MethodInterceptor |
異常拋出通知 | 方法拋出異常 | ThrowsAdvice |
引介通知 | 類中增長新方法屬性 | IntroductionOnterceptor |
即Aop在不改變原有代碼的狀況下,去增長新的功能程序員
使用AOP,須要導入一個依賴包spring
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.4</version> </dependency>
public interface UserService { public void add(); public void delete(); public void update(); public void search(); }
public class UserServiceImpl 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 search() { System.out.println("查詢用戶"); } }
public class Log implements MethodBeforeAdvice { //method : 要執行的目標對象的方法 //objects : 被調用的方法的參數 //Object : 目標對象 @Override public void before(Method method, Object[] objects, Object o) throws Throwable { System.out.println( o.getClass().getName() + "的" + method.getName() + "方法被執行了"); } }
public class AfterLog implements AfterReturningAdvice { //returnValue 返回值 //method被調用的方法 //args 被調用的方法的對象的參數 //target 被調用的目標對象 @Override public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable { System.out.println("執行了" + target.getClass().getName() +"的"+method.getName()+"方法," +"返回值:"+returnValue); } }
<?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 http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!--註冊bean--> <bean id="userService" class="com.zhonghu.service.UserServiceImpl"/> <bean id="log" class="com.zhonghu.log.Log"/> <bean id="afterLog" class="com.zhonghu.log.AfterLog"/> <!--aop的配置--> <aop:config> <!--切入點 expression:表達式匹配要執行的方法 --> <aop:pointcut id="pointcut" expression="execution(* com.zhonghu.service.UserServiceImpl.*(..))"/> <!--執行環繞加強; advice-ref執行方法 . pointcut-ref切入點--> <aop:advisor advice-ref="log" pointcut-ref="pointcut"/> <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/> </aop:config> </beans>
public class MyTest { @Test public void test(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); // 動態代理代理的是接口 UserService userService = (UserService) context.getBean("userService"); userService.search(); } }
Aop的重要性:很重要,必定要理解其中的思路express
Spring的Aop就是將公共的業務(日誌、安全)和領域業務結合起來,當執行領域業務時,將會把公共業務加起來,實現公共業務的重複利用,領域業務更加純粹,程序員只須要專一領域業務。編程
其本質仍是動態代理api
目標業務不變依舊是userServiceImpl緩存
public class DiyPointcut { public void before(){ System.out.println("---------方法執行前---------"); } public void after(){ System.out.println("---------方法執行後---------"); } }
<!--第二種方式自定義實現--> <!--註冊bean--> <bean id="diy" class="com.zhonghu.config.DiyPointcut"/> <!--aop的配置--> <aop:config> <!--第二種方式:使用AOP的標籤實現--> <aop:aspect ref="diy"> <aop:pointcut id="diyPonitcut" expression="execution(* com.zhonghu.service.UserServiceImpl.*(..))"/> <aop:before pointcut-ref="diyPonitcut" method="before"/> <aop:after pointcut-ref="diyPonitcut" method="after"/> </aop:aspect> </aop:config>
public class MyTest { @Test public void test(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); UserService userService = (UserService) context.getBean("userService"); userService.add(); } }
package com.zhonghu.config; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; // 標註這個類是一個切面 // 標註這個類是一個切面 @Aspect public class PointCut { @Before("execution(* com.zhonghu.pojo.User.*(..))") public void befer(){ System.out.println("方法執行前"); } @After("execution(* com.zhonghu.pojo.User.*(..))") public void after(){ System.out.println("方法執行後"); } //在環繞加強中,咱們能夠給定一個參數,表明咱們要處理切入的點。 @Around("execution(* com.zhonghu.pojo.User.*(..))") public void around(ProceedingJoinPoint jp) throws Throwable { System.out.println("環繞前"); System.out.println("簽名:"+jp.getSignature()); //執行目標方法proceed Object proceed = jp.proceed(); System.out.println("環繞後"); System.out.println(proceed); } }
<!--第三種方式:註解實現--> <bean id="annotationPointcut" class="com.zhonghu.config.AnnotationPointcut"/> <aop:aspectj-autoproxy/>
輸出結果:安全
切面的執行順序:框架
aop:aspectj-autoproxy:說明ide
- 經過aop建立的命名空間的<aop:aspectj-autoproxy />聲明自動爲spring容器中那些配置@aspectJ切面的bean建立代理,織入切面。固然,spring 在內部依舊採用AnnotationAwareAspectJAutoProxyCreator進行自動代理的建立工做,但具體實現的細節已經被<aop:aspectj-autoproxy />隱藏起來了
- <aop:aspectj-autoproxy />有一個proxy-target-class屬性,默認爲false,表示使用jdk動態代理織入加強,當配爲<aop:aspectj-autoproxy poxy-target-class="true"/>時,表示使用CGLib動態代理技術織入加強。不過即便proxy-target-class設置爲false,若是目標類沒有聲明接口,則spring將自動使用CGLib動態代理
歡迎關注公衆號「Java冢狐」獲取最新消息