您好,登錄后才能下訂單哦!
這篇文章主要介紹“SpringBoot AOP @Pointcut切入點表達式排除某些類方式是什么”,在日常操作中,相信很多人在SpringBoot AOP @Pointcut切入點表達式排除某些類方式是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SpringBoot AOP @Pointcut切入點表達式排除某些類方式是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
希望給service包下的所有public方法添加開始和結束的info log,但是需要排除和數據庫相關的service
其他博文都推薦了
@Pointcut("execution(* com.demo.service.*.*(..)) && !execution(* com.demo.service.dbservice.*(..)) ")
類似的用法,但是在實際操作中,發現&&這個關鍵字無法使用,只能使用and才能編譯通過,并且@Pointcut只識別了前面半句表達式,and(&&)之后的內容被無視了。
@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() { }
到此,關于“SpringBoot AOP @Pointcut切入點表達式排除某些類方式是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。