91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring代理對象導致的獲取不到原生對象注解怎么解決

發布時間:2022-04-02 11:03:58 來源:億速云 閱讀:428 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“Spring代理對象導致的獲取不到原生對象注解怎么解決”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Spring代理對象導致的獲取不到原生對象注解怎么解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

問題描述

我在接受 mq 消息的時候,需要做一個重試次數限制,如果超過 maxNum 就發郵件告警,不再重試。

所以我需要對 consumer 對象進行代理,然后如果超過異常次數,我直接返回成功,并且發送成功消息,但是我獲取 consumer handler 方法的方式是通過 method.getAnnotation(XXClient.class) 方式,那么就會返回 null。

問題示例代碼

目標類, 我這里就之定義一個 test 方法,里面做一些個簡單的打印。

@Component
public class TestBean {

    @Anno
    public void test() {
        System.out.println("test .....");
    }
}

代理邏輯邏輯處理, 主要就是做一個 @Around 的方法覆蓋,保證在調用目標方法之前,先輸出我插入的邏輯。

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Anno {

    String key() default "100%";
}

@Aspect
@Component
public class AnnoAspect {

    @Around("@annotation(anno)")
    public Object anno(ProceedingJoinPoint point, Anno anno) throws Throwable {
        System.out.println("anno invoke!!!!!!");
        return point.proceed();
    }


}

調用點, 通過 AnnotationConfigApplicationContext 獲取 bean. 然后通過 getMethods() 獲取所有的方法,最后查找 Anno 注解的 Method 對象。

    AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanStart.class);
    TestBean bean = applicationContext.getBean(TestBean.class);

    Class<? extends TestBean> classz = bean.getClass();
    Method[] methods = classz.getMethods();

    for (Method m : methods) {
        Anno annotation = m.getAnnotation(Anno.class);

        if (annotation != null) {
            System.out.println(" ============= invoke test ===========");
            m.invoke(bean, new Object());
        }
    }

由于 m.getAnnotaion(Anno.class) 無法獲取到注解信息,所以執行 test 方法失敗,

到此問題還原完畢,我們再來看看如何解決。

解決方案

通過 Anno ao = AnnotationUtils.findAnnotation(classz, Anno.class); 方法獲取即可。

有的代碼是這樣寫的 :

String name = classz.getName();
boolean isSpringProxy = name.indexOf("SpringCGLIB$$") >= 0;
Method[] methods;
if (isSpringProxy) {
    methods = ReflectionUtils.getAllDeclaredMethods(AopUtils.getTargetClass(bean));
} else {
    methods = classz.getMethods();
}

// 省略部分代碼
if (isSpringProxy) {
    annotation = AnnotationUtils.findAnnotation(method, MqClient.class);
} else {
    annotation = method.getAnnotation(Anno.class);
}

這里他會做一個判斷,如果是代理對象就調用  ReflectionUtils.getAllDeclaredMethods 獲取所有的方法, 然后再去拿注解的時候二次判斷一下,如果存在代理,那么就通過 AnnotationUtils.findAnnotation 感覺是相當的嚴謹。

讀到這里,這篇“Spring代理對象導致的獲取不到原生對象注解怎么解決”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洮南市| 桐庐县| 怀柔区| 瓮安县| 酒泉市| 湘乡市| 望奎县| 繁峙县| 石阡县| 沁阳市| 财经| 樟树市| 额敏县| 尚志市| 当阳市| 伽师县| 阿拉善左旗| 正安县| 西和县| 云林县| 赣榆县| 南城县| 栾川县| 东明县| 怀远县| 顺平县| 蛟河市| 沙河市| 山阳县| 阿勒泰市| 囊谦县| 仪陇县| 潼南县| 平昌县| 醴陵市| 左权县| 襄汾县| 儋州市| 任丘市| 科技| 平阴县|