您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Spring AOP自定義可重復注解沒有生效的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Spring AOP自定義可重復注解沒有生效的示例分析”這篇文章吧。
工作中遇到這樣的場景:某個方法需要在不同的業務場景下執行特定的邏輯,該方法已經上生產,不想改變原來的代碼,因此決定用AOP做個切面執行邏輯。
以下為核心代碼:
定義注解:
@Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Inherited @Documented @Repeatable(value = StartTaskRuns.class) public @interface StartTaskRun { int businessType() default 0; } @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Inherited @Documented public @interface StartTaskRuns { StartTaskRun[] value(); }
定義切面
@Aspect @Component public class StartTaskRunAspect { @AfterReturning(pointcut = "@annotation(com.freedom.code.annotation.StartTaskRun)", returning = "retValue") public void startTask(JoinPoint joinPoint, Object retValue) throws Exception { Object[] args = joinPoint.getArgs(); Signature signature = joinPoint.getSignature(); MethodSignature methodSignature = (MethodSignature) signature; Method method = methodSignature.getMethod(); StartTaskRun[] annotations = method.getAnnotationsByType(StartTaskRun.class); for (StartTaskRun annotation : annotations) { System.out.println(annotation.businessType()); } } }
業務代碼加注解
@StartTaskRun(businessType = 5) @StartTaskRun(businessType = 6) @Override @Transactional(rollbackFor = Exception.class) public String doCsmsStrategy(Long id) { // 業務邏輯 return userDO.getId().toString(); }
debug的時候發現,切面的代碼沒有執行。
@AfterReturning(pointcut = "execution(* com.freedom.code.service.UserServiceImpl.doCsmsStrategy(..))", returning = "retValue") public void startTask(JoinPoint joinPoint, Object retValue) throws Exception { Object[] args = joinPoint.getArgs(); Signature signature = joinPoint.getSignature(); MethodSignature methodSignature = (MethodSignature) signature; Method method = methodSignature.getMethod(); StartTaskRun[] annotations = method.getAnnotationsByType(StartTaskRun.class); for (StartTaskRun annotation : annotations) { System.out.println(annotation.businessType()); } }
還是不行,但是我的工程中其他地方也是類似的寫法卻沒有問題啊。看起來不像是AOP配置不對的問題
打斷點吧,如下:
是使用cglib生成的代理對象,沒有問題啊,到底問題在哪里。沒辦法,面向百度編程吧,還真找到問題解決辦法。如下帖子:http://www.neiyidaogou.com/article/220762.htm
對于可重復注解,如果方法上用多個可重復注解,AOP攔截不到。需要用它的包裝類型注解做切點,改成以下代碼就可以了:
@Aspect @Component public class StartTaskRunAspect { @AfterReturning(pointcut = "@annotation(com.freedom.code.annotation.StartTaskRun) || @annotation(com.freedom.code.annotation.StartTaskRuns)", returning = "retValue") public void startTask(JoinPoint joinPoint, Object retValue) throws Exception { Object[] args = joinPoint.getArgs(); Signature signature = joinPoint.getSignature(); MethodSignature methodSignature = (MethodSignature) signature; Method method = methodSignature.getMethod(); StartTaskRun[] annotations = method.getAnnotationsByType(StartTaskRun.class); for (StartTaskRun annotation : annotations) { System.out.println(annotation.businessType()); } } }
以上是“Spring AOP自定義可重復注解沒有生效的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。