我正在尝试调试一个有问题的java eclipse项目!
我开始使用CGLIB使用索引方法进行更快的反射调用。
例子
FastClass fastClass = FastClass.create(getClass());
int index = fastClass.getIndex("methodName", new Class[] { Object.class });
fastClass.invoke(index, this, new Object[] { obj } );
现在,当我尝试将断点放入由 fastreflection 方法调用的类中时,这是 eclipse 输出。
我尝试在生成行号时更改编译器选项,但没有结果。
我还上传了一个复制问题的 Eclipse 项目(使用 Juno 版本构建)!!
http://www.filefactory.com/file/4zryz3gjgbyh/n/FastDebug.rar
谢谢!