I modify getMessage() method body of my TestClass by Javassist like this:
ClassPool cp = new ClassPool(true);
CtClass ctClass = cp.get("my.test.javassist.TestClass");
CtMethod ctMethod = ctClass.getDeclaredMethod("getMessage");
ctMethod.setBody("{ return \"Hello from javassist\"; }");
ctClass.toClass();
TestClass c = new TestClass();
System.out.println(c.getMessage());
It works well. However, if I remove the ctClass.toClass() method call, the body substitution doesn't work. Why?
How should I correctly replace the body of my getMessage() method? Am I doing it right?