<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
面向切面程式設計(俗稱AOP)提供了一種物件導向程式設計(俗稱OOP)的補充,物件導向程式設計最核心的單元是類(class),然而面向切面程式設計最核心的單元是切面(Aspects)。與物件導向的順序流程不同,AOP採用的是橫向切面的方式,注入與主業務流程無關的功能,例如事務管理和紀錄檔管理。
圖示:
Spring的一個關鍵元件是AOP框架。 雖然Spring IoC容器不依賴於AOP(意味著你不需要在IOC中依賴AOP),但AOP為Spring IoC提供了非常強大的中介軟體解決方案。
AOP 是一種程式設計正規化,最早由 AOP 聯盟的組織提出的,通過預編譯方式和執行期動態代理實現程式功能的統一維護的一種技術。它是 OOP的延續。利用 AOP 可以對業務邏輯的各個部分進行隔離,從而使得業務邏輯各部分之間的耦合度降低,提高程式的可重用性,同時提高了開發的效率
要使用Spring AOP,需要匯入如下的maven包:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.23</version> </dependency> <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.9.1</version> </dependency>
在對應的Spring組態檔中,需要匯入aop的約束:
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"> </beans>
編寫介面類:UserService.java
public interface UserService { public void add(); public void delete(); public void update(); public void query(); }
介面實現類:UserServiceImpl.java
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 query() { System.out.println("查詢使用者"); } }
待插入的前置紀錄檔類:Log.java
/** * 插入的前置紀錄檔類 */ public class Log implements MethodBeforeAdvice { @Override public void before(Method method, Object[] args, Object target) throws Throwable { System.out.println(target.getClass().getName() + "的" + method.getName() + "被執行了!"); } }
待插入的後置紀錄檔類:AfterLog.java
/** * 插入的後置紀錄檔類 */ public class AfterLog implements AfterReturningAdvice { @Override public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable { System.out.println("執行了" + method.getName() + "方法,返回結果為:" + returnValue); } }
註冊類的bean標籤:
<!-- 註冊測試bean --> <bean id="userService" class="top.imustctf.service.UserServiceImpl"/> <bean id="log" class="top.imustctf.log.Log"/> <bean id="afterLog" class="top.imustctf.log.AfterLog"/>
設定aop:
切入點是待切入的方法,使用正規表示式匹配
執行環繞增加是具體向切入點新增紀錄檔的設定
<!-- 設定AOP --> <aop:config> <!-- 設定切入點 --> <aop:pointcut id="pointcut" expression="execution(* top.imustctf.service.UserServiceImpl.*(..))"/> <!-- 執行環繞增加 --> <aop:advisor advice-ref="log" pointcut-ref="pointcut"/> <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/> </aop:config>
現在來測試一下吧:
可以看到,AOP動態代理切入成功了!
@Test public void test() { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService = context.getBean("userService", UserService.class); userService.add(); // top.imustctf.service.UserServiceImpl的add被執行了! // 增加使用者 // 執行了add方法,返回結果為:null }
先Diy一個切面類:DiyPointCut.java
public class DiyPointCut { public void before() { System.out.println("方法執行前"); } public void after() { System.out.println("方法執行後"); } }
註冊diy類並設定切面:
<bean id="diy" class="top.imustctf.diy.DiyPointCut"/> <aop:config> <!-- 定義一個切面,ref中為要參照的類物件 --> <aop:aspect ref="diy"> <!-- 設定切入點 --> <aop:pointcut id="point" expression="execution(* top.imustctf.service.UserServiceImpl.*(..))"/> <!-- 通知 --> <aop:before method="before" pointcut-ref="point"/> <aop:after method="after" pointcut-ref="point"/> </aop:aspect> </aop:config>
來開始測試:
@Test public void test() { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService = context.getBean("userService", UserService.class); userService.add(); // 方法執行前 // 增加使用者 // 方法執行後 }
使用註解實現AOP,它更簡單,更強大!
在使用註解開發前,需要在Spring組態檔中開啟動態代理的支援:
<aop:aspectj-autoproxy/>
接下來,使用註解直接開發AOP類:
@Component @Aspect // 標註這個類是一個切面 public class AnnotationPointCut { @Before("execution(* top.imustctf.service.UserServiceImpl.*(..))") public void before() { System.out.println("方法執行前啊!"); } @After("execution(* top.imustctf.service.UserServiceImpl.*(..))") public void after() { System.out.println("方法執行後啊!"); } }
現在來測試一下吧:
@Test public void test() { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService = context.getBean("userService", UserService.class); userService.add(); // 方法執行前啊! // 增加使用者 // 方法執行後啊! }
到此這篇關於一文詳解Spring AOP的設定與使用的文章就介紹到這了,更多相關Spring AOP內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45