use Javassist to add some code statically at the beginning of a method right after the class is compiled. For example,
public String getFoo() {
// add some code here
return "foo";
}
From Eclipse debug, I can not see the added code. Is there a way for Eclipse to show de-compiled code instead of original source?
How to debug it?