spring-aop
什麼是AOP
AOP(Aspect Oriented Programming)意為:面向切面程式設計,通過預編譯方式和執行期動態代理實現程式功能的統一維護的一種技術。AOP是OOP的延續,是軟體開發中的一個熱點,也是Spring框架中的一個重要內容,是函數語言程式設計的一種衍生範型。利用AOP可以對業務邏輯的各個部分進行隔離,從而使得業務邏輯各部分之間的耦合度降低,提高程式的可重用性,同時提高了開發的效率。
Aop在Spring中的作用
提供宣告式事務;允許使用者自定義切面
以下名詞需要了解下:
橫切關注點:跨越應用程式多個模組的方法或功能。即是,與我們業務邏輯無關的,但是我們需要關注的部分,就是橫切關注點。如日誌 , 安全 , 快取 , 事務等等 …
切面(ASPECT):橫切關注點 被模組化 的特殊物件。即,它是一個類。
通知(Advice):切面必須要完成的工作。即,它是類中的一個方法。
目標(Target):被通知物件。
代理(Proxy):向目標物件應用通知之後建立的物件。
切入點(PointCut):切面通知 執行的 “地點”的定義。
連線點(JointPoint):與切入點匹配的執行點。
SpringAOP中,通過Advice定義橫切邏輯,Spring中支援5種型別的Advice:
即 Aop 在 不改變原有程式碼的情況下 , 去增加新的功能 .
使用Spring實現Aop
【重點】使用AOP織入,需要匯入一個依賴包!
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.4</version>
</dependency>
第一種方式
通過 Spring API 實現
首先編寫我們的業務介面和實現類
package com.lyh.service;
public interface UserService {
public void add();
public void update();
public void delete();
public void query();
}
package com.lyh.service;
public class UserServiceImpl implements UserService{
public void add() {
System.out.println("新增了一個使用者");
}
public void update() {
System.out.println("修改了一個使用者");
}
public void delete() {
System.out.println("刪除了一個使用者");
}
public void query() {
System.out.println("查詢了一個使用者");
}
}
然後去寫我們的增強類 , 我們編寫兩個 , 一個前置增強 一個後置增強
前置增強
package com.lyh.log;
import org.springframework.aop.MethodBeforeAdvice;
import java.lang.reflect.Method;
public class log implements MethodBeforeAdvice {
public void before(Method method, Object[] objects, Object o) throws Throwable {
System.out.println(o.getClass().getName()+"的"+method.getName()+"被執行了");
}
}
後置增強
package com.lyh.log;
import org.springframework.aop.AfterReturningAdvice;
import java.lang.reflect.Method;
public class AfterLog implements AfterReturningAdvice {
public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
System.out.println("執行了"+method.getName()+"返回結果為"+o);
}
}
最後去spring的檔案中註冊 , 並實現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: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">
<?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.lyh.service.UserServiceImpl"/>
<bean id="log" class="com.lyh.log.log"/>
<bean id="afterLog" class="com.lyh.log.AfterLog"/>
<!--配置aop:需要匯入aop約束-->
<aop:config>
<!--切入點-->
<aop:pointcut id="point" expression="execution(* com.lyh.service.UserServiceImpl.*(..)) "/>
<!--執行環繞增加-->
<aop:advisor advice-ref="log" pointcut-ref="point"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="point"/>
</aop:config>
</beans>
測試
import com.lyh.service.UserService;
import com.lyh.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class test {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService = context.getBean("userService",UserService.class);//這裡例項化介面
userService.query();
}
}
Aop的重要性 : 很重要 . 一定要理解其中的思路 , 主要是思想的理解這一塊 .
Spring的Aop就是將公共的業務 (日誌 , 安全等) 和領域業務結合起來 , 當執行領域業務時 , 將會把公共業務加進來 . 實現公共業務的重複利用 . 領域業務更純粹 , 程式猿專注領域業務 , 其本質還是動態代理 .
第二種方式
自定義類來實現Aop
目標業務類不變依舊是userServiceImpl
第一步 : 寫我們自己的一個切入類
package com.lyh.log;
public class DiyPointcut {
public void before(){
System.out.println("——————————————————");
}
public void after(){
System.out.println("+++++++++++++++++++");
}
}
去spring中配置
<?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.lyh.service.UserServiceImpl"/>
<bean id="diy" class="com.lyh.log.DiyPointcut"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="DiyPointcut " expression="execution(* com.lyh.service.UserServiceImpl.*(..))"/>
<aop:before pointcut-ref="DiyPointcut " method="before"/>
<aop:after method="after" pointcut-ref="DiyPointcut "/>
</aop:aspect>
</aop:config>
</beans>
3.測試
import com.lyh.service.UserService;
import com.lyh.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class test {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService = context.getBean("userService",UserService.class);
userService.query();
}
}
第三種方式
使用註解實現
第一步:編寫一個註解實現的增強類
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 AnnotationPointcut {
@Before("execution(* com.kuang.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("---------方法執行前---------");
}
@After("execution(* com.kuang.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("---------方法執行後---------");
}
@Around("execution(* com.kuang.service.UserServiceImpl.*(..))")
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);
}
}
第二步:在Spring配置檔案中,註冊bean,並增加支援註解的配置
<!--第三種方式:註解實現-->
<bean id="annotationPointcut" class="com.kuang.config.AnnotationPointcut"/>
<aop:aspectj-autoproxy/>
aop:aspectj-autoproxy:說明
通過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動態代理。
到了這裡,AOP的思想和使用相信大家就沒問題了!
相關文章
- Hello Spring-AOPSpring
- 重拾-Spring-AOPSpring
- Spring-AOP(面向切面)Spring
- Spring-AOP事務Spring
- Spring-Aop詳細教程Spring
- spring-AOP(一)實現原理Spring
- Spring-Aop註解形式案例Spring
- Spring-AOP之工作實踐(二)Spring
- Spring-aop 全面解析(從應用到原理)Spring
- 基於Spring-AOP的自定義分片工具Spring
- spring-AOP(二)實現原理之AspectJ註解方式Spring
- Spring原始碼系列(四)--spring-aop是如何設計的Spring原始碼
- Spring原始碼系列(三)--spring-aop的基礎元件、架構和使用Spring原始碼元件架構
- Spring系列:基於Spring-AOP和Spring-Aspects實現AOP切面程式設計Spring程式設計