亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

關(guān)于Spring AOP使用時的一些問題匯總

瀏覽:35日期:2023-08-06 10:59:49

在使用AOP的時候遇到了一些問題,特此記錄一下

首先寫一個常用的AOP切片

切片類AopLog

package com.mantis.aop.aspect;import com.fasterxml.jackson.databind.ObjectMapper;import com.mantis.aop.common.util.DataUtil;import eu.bitwalker.useragentutils.UserAgent;import org.aspectj.lang.JoinPoint;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.*;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.stereotype.Component;import org.springframework.validation.BeanPropertyBindingResult;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.util.ArrayList;import java.util.Arrays;import java.util.Enumeration;import java.util.List;import java.util.stream.Collectors;/** * @Description:執(zhí)行順序 正常順序 Around Before Method.invoke Around After AfterReturning * 異常順序 Around Before Method.invoke After AfterThrowing * @author: wei.wang * @since: 2020/4/4 13:47 * @history: 1.2020/4/4 created by wei.wang */@Aspect@Componentpublic class AopLog { private static Logger logger = LoggerFactory.getLogger(AopLog.class); /** * 定義切點,切點為com.smec.fin.controller包和子包里任意方法的執(zhí)行和service層所有方法的執(zhí)行 */ @Pointcut('execution(public * com.mantis.aop.controller..*.*(..))') public void log() { // 定義切點 } /** * 定義切點,切點為com.smec.fin.controller包和子包里任意方法的執(zhí)行和service層所有方法的執(zhí)行 */ @Pointcut('execution(public * com.mantis.aop.service.impl..*.*(..))') public void log2() { // 定義切點 } /** * 環(huán)繞通知 * * @param point * @return * @throws Throwable */ @Around('log2()') public Object aroundLog(ProceedingJoinPoint point) throws Throwable { logger.info('開始執(zhí)行環(huán)繞操作'); Object result = point.proceed(); logger.info('執(zhí)行環(huán)繞操作結(jié)束,返回值:{}', result); return result; }}

服務(wù)類AopServiceImpl

package com.mantis.aop.service.impl;import com.mantis.aop.service.AopService;import org.springframework.aop.framework.AopContext;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;/** * @Description: * @author: wei.wang * @since: 2020/10/24 12:45 * @history: 1.2020/10/24 created by wei.wang */@Servicepublic class AopServiceImpl implements AopService { @Override public void testAop(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testAop' + str); this.testAop2('testFinalMethod'); } @Override public void testAop2(String str) { //this.testFinalMethod('testFinalMethod'); System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.' + str); } public final void testFinalMethod(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod' + str); } public void testFinalMethod2(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod' + str); }}

1.同方法運(yùn)行問題

在使用AOP時我們發(fā)現(xiàn)存在同類中調(diào)用時切點失效問題,在執(zhí)行時我們發(fā)現(xiàn)只執(zhí)行了testAop的切點,testAop2的切點沒有執(zhí)行,這是因為經(jīng)過AOP代理后的對象都已經(jīng)不是原來的對象了,而是加入了增強(qiáng)方法的代理對象,使用代理對象調(diào)用時可以執(zhí)行增強(qiáng)方法,但是這里是使用this調(diào)用的,也就是AopServiceImpl,因為不是代理對象就沒有增強(qiáng)方法。

2020-10-24 13:31:06.261 INFO 13344 --- [nio-9000-exec-1] com.mantis.aop.controller.AopController : 方法開始執(zhí)行2020-10-24 13:31:06.264 INFO 13344 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testAoptest2com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod2020-10-24 13:31:06.274 INFO 13344 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null

用@Autowired或Resource引入自身依賴

使用注解方法引入自身代理依賴,注意使用構(gòu)造的方式會有循環(huán)依賴問題

@Autowired AopServiceImpl aopService; @Override public void testAop(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testAop' + str); aopService.testAop2('testFinalMethod'); System.out.println(); }

2020-10-24 13:36:33.477 INFO 12528 --- [nio-9000-exec-1] com.mantis.aop.controller.AopController : 方法開始執(zhí)行2020-10-24 13:36:33.480 INFO 12528 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testAoptest22020-10-24 13:36:33.488 INFO 12528 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod2020-10-24 13:36:33.488 INFO 12528 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null2020-10-24 13:36:33.490 INFO 12528 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null

開啟暴露代理類,AopContext.currentProxy()方式獲取代理類

通過暴露代理類方式,實際原理是把代理類添加到當(dāng)前請求的ThreadLocal里面,然后在使用時從ThreadLocal中獲取代理類,再調(diào)用對應(yīng)的方法

在主方法上加入@EnableAspectJAutoProxy(exposeProxy=true),然后從AOP上下文中獲取代理

@Override public void testAop(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testAop' + str); AopServiceImpl service = AopContext.currentProxy() != null ? (AopServiceImpl) AopContext.currentProxy() : this; service.testAop2('testFinalMethod'); System.out.println(); }

2020-10-24 13:38:31.031 INFO 18828 --- [nio-9000-exec-1] com.mantis.aop.controller.AopController : 方法開始執(zhí)行2020-10-24 13:38:31.035 INFO 18828 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testAoptest22020-10-24 13:38:31.047 INFO 18828 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod2020-10-24 13:38:31.048 INFO 18828 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null2020-10-24 13:38:31.050 INFO 18828 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null

2.final關(guān)鍵字問題

Spring AOP默認(rèn)使用cglib,會生成目標(biāo)對象的子類代理對象。調(diào)用目標(biāo)對象的方法,實際上是調(diào)用代理對象的方法。由于子類能夠繼承父類的方法,因此一般情況下目標(biāo)類的方法,代理對象都會有。但是當(dāng)目標(biāo)類中某個方法帶有final關(guān)鍵字時,這個方法不能被重寫,因此代理對象中沒有這個方法,因此會調(diào)用目標(biāo)對象的方法。

帶final關(guān)鍵字

因為testFinalMethod方法中存在final關(guān)鍵字,導(dǎo)致無法重寫,結(jié)果代理對象就無法生成這個方法,因此調(diào)用目標(biāo)對象方法,導(dǎo)致沒有被增強(qiáng)

@Override public void testAop(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testAop' + str); AopServiceImpl service = AopContext.currentProxy() != null ? (AopServiceImpl) AopContext.currentProxy() : this; service.testFinalMethod('testFinalMethod'); System.out.println(); } public final void testFinalMethod(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod' + str); }

2020-10-24 13:47:46.907 INFO 15204 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testAoptest2com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethodtestFinalMethod2020-10-24 13:47:46.916 INFO 15204 --- [nio-9000-exec-1] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null

不帶final關(guān)鍵字

因為testFinalMethod方法中不存在final關(guān)鍵字,所以正常執(zhí)行增強(qiáng)。

@Override public void testAop(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testAop' + str); AopServiceImpl service = AopContext.currentProxy() != null ? (AopServiceImpl) AopContext.currentProxy() : this; service.testFinalMethod2('testFinalMethod'); System.out.println(); } public final void testFinalMethod2(String str) { System.out.println('com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethod' + str); }

2020-10-24 13:50:51.018 INFO 13532 --- [nio-9000-exec-2] com.mantis.aop.controller.AopController : 方法開始執(zhí)行2020-10-24 13:50:51.021 INFO 13532 --- [nio-9000-exec-2] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testAoptest22020-10-24 13:50:51.029 INFO 13532 --- [nio-9000-exec-2] com.mantis.aop.aspect.AopLog : 開始執(zhí)行環(huán)繞操作com.mantis.aop.service.AopService.AopServiceImpl.testFinalMethodtestFinalMethod2020-10-24 13:50:51.030 INFO 13532 --- [nio-9000-exec-2] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null2020-10-24 13:50:51.031 INFO 13532 --- [nio-9000-exec-2] com.mantis.aop.aspect.AopLog : 執(zhí)行環(huán)繞操作結(jié)束,返回值:null

總結(jié)

到此這篇關(guān)于Spring AOP使用時的一些問題匯總的文章就介紹到這了,更多相關(guān)Spring AOP使用時的問題內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Spring
相關(guān)文章:
主站蜘蛛池模板: 久久成人视 | 成人日韩视频 | 国产jjzzjjzz视频全部 | 成人小视频在线免费观看 | 综合色婷婷 | 久久久久免费 | 天天摸天天碰中文字幕 | 五月色综合婷婷综合俺来也 | 99re6热视频精品免费观看 | 成年免费大片黄在线观看岛国 | 国产美腿丝袜福利视频在线观看 | 麻豆果冻传媒精品二三区 | 起碰97 | 久久久久久久久综合 | 国产精品亚洲一区二区三区在线播放 | 95视频在线播放 | 毛片视频网址 | 国产精品久久久久无码av | 亚洲精品国产精品乱码视色 | 1024手机在线基地 | 欧美人成在线观看 | 国产精品手机在线亚洲 | 午夜久久久久久久 | 性一级视频 | 日本人妖tubexxxx| 国产在线精品一区二区 | 好吊色青青青国产欧美日韩 | 91av一区| 伊甸园久久网站 | 害羞的清纯女神露脸在线视频 | 国产精品黄页网站在线播放免费 | 98香蕉草草视频在线精品看 | 综合婷婷 | 在线精品视频播放 | 一 级 黄 色蝶 片 | 亚洲一区二区三区在线观看蜜桃 | 美女草 | 国产91免费视频 | 莫菁在线 | 黑人狂躁日本妞 | 成人午夜又粗又硬有大 |