springboot實現對註解的切面案例

對註解實現切面案例:

(1)定義一個註解

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
    String getValues() default "test annotation";
}
@Target(ElementType.METHOD)

表示該註解作用在方法上(type表示類上,field表示成員變量上)

@Retention(RetentionPolicy.RUNTIME)

表示該註解的作用范圍,由於需要在運行時能夠識別到該註解,所以是RUNTIME(SOURCE表示源碼層面上,即編譯成.class時看不見該註解,而CLASS可以,但是在運行時看不到)

(2)編寫對註解的切面

(隻是記錄的執行時間和打印方法,可以實現其他邏輯)

@Aspect
@Component
@Slf4j
public class MyAspect {
    // value也可以寫成value = "(execution(* com.sj..*(..))) && @annotation(zkDistributeLock)"
    @Around(value = "@annotation(myAnnotation)", argNames = "proceedingJoinPoint, myAnnotation")
    public Object processTest(ProceedingJoinPoint proceedingJoinPoint, MyAnnotation myAnnotation) throws Throwable {
        long beginTime = System.currentTimeMillis();
        // 獲取方法參數
        Object[] args = proceedingJoinPoint.getArgs();
        // 執行方法
        Object res = proceedingJoinPoint.proceed(args);
        long time = System.currentTimeMillis() - beginTime;
        MethodSignature signature = (MethodSignature) proceedingJoinPoint.getSignature();
        String className = proceedingJoinPoint.getTarget().getClass().getName();
        String methodName = signature.getName();
        log.info("註解上的值:{}", myAnnotation.getValues());
        log.info("執行時間:{}", time);
        log.info("執行類和方法:{} {}", className, methodName);
        return res;
    }
}

(3)測試

@GetMapping("/go")
@MyAnnotation(getValues = "success")
public String test1() {
    return "hello world";
}

執行結果:

註解上的值:success

執行時間:8

執行類和方法:com.***.TestController test1

到此這篇關於springboot實現對註解的切面案例的文章就介紹到這瞭,更多相關springboot實現對註解的切面內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: