您好,登錄后才能下訂單哦!
這篇文章主要介紹“SpringBoot AOP @Pointcut切入點(diǎn)表達(dá)式排除某些類方式是什么”,在日常操作中,相信很多人在SpringBoot AOP @Pointcut切入點(diǎn)表達(dá)式排除某些類方式是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SpringBoot AOP @Pointcut切入點(diǎn)表達(dá)式排除某些類方式是什么”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
希望給service包下的所有public方法添加開始和結(jié)束的info log,但是需要排除和數(shù)據(jù)庫相關(guān)的service
其他博文都推薦了
@Pointcut("execution(* com.demo.service.*.*(..)) && !execution(* com.demo.service.dbservice.*(..)) ")
類似的用法,但是在實(shí)際操作中,發(fā)現(xiàn)&&這個關(guān)鍵字無法使用,只能使用and才能編譯通過,并且@Pointcut只識別了前面半句表達(dá)式,and(&&)之后的內(nèi)容被無視了。
@Pointcut("execution(public * com.demo.service.*.*(..))") public void serviceMethods() { } @Pointcut("execution(public * com.demo.service.dbservice.*(..))") public void serviceMethods2() { } @Pointcut("serviceMethods() && !serviceMethods2()") public void serviceMethods3() { } @Before("serviceMethods3()") public void startLog(JoinPoint joinPoint) { String className = joinPoint.getSignature().getDeclaringType().getSimpleName(); String methodName = joinPoint.getSignature().getName(); logger.info("{}.{} start", className, methodName); }
/** * 日志記錄切面 */ @Aspect public class Logger implements ILogger { @Resource(name="logService") private LogService logService ; @Pointcut("execution(* *..*Action*.*(..)) && !execution(* com.audaque.tjfxpt.web.sjcx.LogAction.*(..))") public void actionPointCut() { }
到此,關(guān)于“SpringBoot AOP @Pointcut切入點(diǎn)表達(dá)式排除某些類方式是什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。