是否可以在不使用显式字节码操作工具和其他框架的情况下在 Java 7 中的执行时获取方法参数值?
我的 javassist 日志框架需要它。
public void foo(String arg1, String arg2){
//injected code
Object[] args;
args = ???;//get arg1 and arg2 values in current method context
Logger.logMethodArgs(args);
//end of injected code
...
}