如何在没有方面的方法中获取方法参数

时间:2017-03-03 04:19:01

标签: java reflection

public class Test {

    private static void aMethod(String a, int i) {

        printParam();

    }

    private static void aMethod(String a) {

        printParam();

    }

    private static void printParam() {
        //System.out.println(gson.toJson(MethodInvocation.getArguments()));
    }
}

有没有办法,比如MethodInvocation.getArguments但不使用aspect(如在打印日志的情况下,方法是可更改的,所以它不那么方便),找出方法的调用指出并打印出方法参数'值而不考虑参数的计数和类型?

0 个答案:

没有答案