您好,登錄后才能下訂單哦!
這篇文章主要講解了Spring Boot使用AOP的方法,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。
AOP在開發(fā)中的用處還是很廣的,它的設(shè)計(jì)模式是代理模式,里面的原則就是在不改變源碼的基礎(chǔ)上增加一些新的功能。比如說項(xiàng)目上線了,但是發(fā)現(xiàn)項(xiàng)目中的某個模塊運(yùn)行的很慢,這個時(shí)候就需要打印日志去查看,那么可以使用AOP把代碼動態(tài)的嵌入到項(xiàng)目中,如果檢測完成,移除它就可以了。
下面來看一下,它在Spring Boot中是如何使用的。
package com.zl.aop.component; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.*; import org.springframework.stereotype.Component; //聲明這是一個組件 @Component //定義他是一個切面 @Aspect public class LogComponent { //定義攔截規(guī)則第一個*表示方法返回值任意 //com.zl.aop.Service.*.*的意思是:這個包里面任意類里面的任意方法, //(..)表示參數(shù)任意, @Pointcut("execution(* com.zl.aop.Service.*.*(..))") public void pc(){ } //前置通知 @Before(value ="pc()") public void before(JoinPoint jp){ //name就是拿到的Service中的方法名 String name = jp.getSignature().getName(); System.out.println("before:"+name); } //后置通知 @After(value ="pc()") public void after(JoinPoint jp){ //name就是拿到的Service中的方法名 String name = jp.getSignature().getName(); System.out.println("after:"+name); } //返回通知(有返回值就會觸發(fā)這個方法) @AfterReturning(value ="pc()",returning = "result") public void afterReturning(JoinPoint jp,Object result){ //name就是拿到的Service中的方法名 String name = jp.getSignature().getName(); System.out.println("afterReturning:"+name+"---"+result); } //異常通知 @AfterThrowing(value ="pc()",throwing = "e") public void afterThrowing(JoinPoint jp,Exception e){ //name就是拿到的Service中的方法名 String name = jp.getSignature().getName(); System.out.println("afterThrowing:"+name+"---"+e); } //環(huán)繞通知(相當(dāng)于前四個通知的綜合) @Around(value ="pc()") public Object arount(ProceedingJoinPoint pjp) throws Throwable { //proceed就是Service中方法的返回值 Object proceed = pjp.proceed(); //這個return會篡改方法的返回值并輸出他 return proceed+"java"; } }
就是定義一個組件,去獲取Service中方法,并對他處理。
看一下運(yùn)行結(jié)果:
看完上述內(nèi)容,是不是對Spring Boot使用AOP的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。