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

溫馨提示×

溫馨提示×

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

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

SpringAOP 通過JoinPoint獲取參數名和值的方法

發布時間:2021-06-17 10:24:19 來源:億速云 閱讀:1162 作者:chen 欄目:開發技術

這篇文章主要講解了“SpringAOP 通過JoinPoint獲取參數名和值的方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“SpringAOP 通過JoinPoint獲取參數名和值的方法”吧!

SpringAOP 通過JoinPoint獲取參數名和值

在Java8之前,代碼編譯為class文件后,方法參數的類型固定,但是方法名稱會丟失,方法名稱會變成arg0、arg1….。在Java8開始可以在class文件中保留參數名。

public void tet(JoinPoint joinPoint) {
        // 下面兩個數組中,參數值和參數名的個數和位置是一一對應的。
        Object[] args = joinPoint.getArgs(); // 參數值
        String[] argNames = ((MethodSignature)joinPoint.getSignature()).getParameterNames(); // 參數名
}

注意:

IDEA 只有設置了 Java 編譯參數才能獲取到參數信息。并且jdk要在1.8及以上版本。

SpringAOP 通過JoinPoint獲取參數名和值的方法

Maven中開啟的辦法

增加compilerArgs 參數

 <plugins>
     <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven_compiler_plugin_version}</version>
         <configuration>
             <source>${java_source_version}</source>
             <target>${java_target_version}</target>
             <encoding>${file_encoding}</encoding>
             <compilerArgs>
                 <arg>-parameters</arg>
             </compilerArgs>
         </configuration>
     </plugin>
</plugins>

Eclipse中開啟的辦法

Preferences->java->Compiler下勾選Store information about method parameters選項。

這樣在使用eclipse編譯java文件的時候就會將參數名稱編譯到class文件中。

SpringAOP中JoinPoint對象的使用方法

JoinPoint 對象

JoinPoint對象封裝了SpringAop中切面方法的信息,在切面方法中添加JoinPoint參數,就可以獲取到封裝了該方法信息的JoinPoint對象.

常用API

方法名功能
Signature getSignature();獲取封裝了署名信息的對象,在該對象中可以獲取到目標方法名,所屬類的Class等信息
Object[] getArgs();獲取傳入目標方法的參數對象
Object getTarget();獲取被代理的對象
Object getThis();獲取代理對象

ProceedingJoinPoint對象

ProceedingJoinPoint對象是JoinPoint的子接口,該對象只用在@Around的切面方法中,

添加了以下兩個方法。

Object proceed() throws Throwable //執行目標方法 
Object proceed(Object[] var1) throws Throwable //傳入的新的參數去執行目標方法

Demo

切面類

@Aspect
@Component
public class aopAspect {
    /**
     * 定義一個切入點表達式,用來確定哪些類需要代理
     * execution(* aopdemo.*.*(..))代表aopdemo包下所有類的所有方法都會被代理
     */
    @Pointcut("execution(* aopdemo.*.*(..))")
    public void declareJoinPointerExpression() {}
    /**
     * 前置方法,在目標方法執行前執行
     * @param joinPoint 封裝了代理方法信息的對象,若用不到則可以忽略不寫
     */
    @Before("declareJoinPointerExpression()")
    public void beforeMethod(JoinPoint joinPoint){
        System.out.println("目標方法名為:" + joinPoint.getSignature().getName());
        System.out.println("目標方法所屬類的簡單類名:" +        joinPoint.getSignature().getDeclaringType().getSimpleName());
        System.out.println("目標方法所屬類的類名:" + joinPoint.getSignature().getDeclaringTypeName());
        System.out.println("目標方法聲明類型:" + Modifier.toString(joinPoint.getSignature().getModifiers()));
        //獲取傳入目標方法的參數
        Object[] args = joinPoint.getArgs();
        for (int i = 0; i < args.length; i++) {
            System.out.println("第" + (i+1) + "個參數為:" + args[i]);
        }
        System.out.println("被代理的對象:" + joinPoint.getTarget());
        System.out.println("代理對象自己:" + joinPoint.getThis());
    }
    /**
     * 環繞方法,可自定義目標方法執行的時機
     * @param pjd JoinPoint的子接口,添加了
     *            Object proceed() throws Throwable 執行目標方法
     *            Object proceed(Object[] var1) throws Throwable 傳入的新的參數去執行目標方法
     *            兩個方法
     * @return 此方法需要返回值,返回值視為目標方法的返回值
     */
    @Around("declareJoinPointerExpression()")
    public Object aroundMethod(ProceedingJoinPoint pjd){
        Object result = null;
        try {
            //前置通知
            System.out.println("目標方法執行前...");
            //執行目標方法
            //result = pjd.proeed();
            //用新的參數值執行目標方法
            result = pjd.proceed(new Object[]{"newSpring","newAop"});
            //返回通知
            System.out.println("目標方法返回結果后...");
        } catch (Throwable e) {
            //異常通知
            System.out.println("執行目標方法異常后...");
            throw new RuntimeException(e);
        }
        //后置通知
        System.out.println("目標方法執行后...");
        return result;
    }
}

被代理類

/**
 * 被代理對象
 */
@Component
public class TargetClass {
    /**
     * 拼接兩個字符串
     */
    public String joint(String str1, String str2) {
        return str1 + "+" + str2;
    }
}

測試類

public class TestAop {
    @Test
    public void testAOP() {
        //1、創建Spring的IOC的容器
        ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:bean.xml");
        //2、從IOC容器中獲取bean的實例
        TargetClass targetClass = (TargetClass) ctx.getBean("targetClass");
        //3、使用bean
        String result = targetClass.joint("spring","aop");
        System.out.println("result:" + result);
    }
}

輸出結果

目標方法執行前...
目標方法名為:joint
目標方法所屬類的簡單類名:TargetClass
目標方法所屬類的類名:aopdemo.TargetClass
目標方法聲明類型:public
第1個參數為:newSpring
第2個參數為:newAop
被代理的對象:aopdemo.TargetClass@4efc180e
代理對象自己:aopdemo.TargetClass@4efc180e (和上面一樣是因為toString方法也被代理了)
目標方法返回結果后...
目標方法執行后...
result:newSpring+newAop

感謝各位的閱讀,以上就是“SpringAOP 通過JoinPoint獲取參數名和值的方法”的內容了,經過本文的學習后,相信大家對SpringAOP 通過JoinPoint獲取參數名和值的方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

天长市| 遵义市| 额济纳旗| 同德县| 托克托县| 遂宁市| 腾冲县| 吴旗县| 乌拉特后旗| 水富县| 张家口市| 呼伦贝尔市| 米林县| 靖西县| 安远县| 长丰县| 哈密市| 渑池县| 奇台县| 新泰市| 云林县| 枝江市| 孝义市| 金门县| 彭山县| 沙田区| 金湖县| 宿州市| 利津县| 五莲县| 连江县| 霍山县| 临汾市| 班玛县| 民乐县| 康定县| 郑州市| 建湖县| 咸丰县| 扶沟县| 壶关县|