As said, I'd like to change the bytecode during execution. I am not running any sort of application or web server, it's just for a command line program.
Of course I could just create a new ClassLoader, but that's from the performance point of view not feasible.
I ran into JRebel, which should be capable of exactly this things, but I cannot find any examples, tutorial to archive this.
Java Hotswapt is not an option, because it cannot deal with multiple Classlaoders
Simple Example to demonstrate what I want:
Class Car { public void print() { System.out.println("I am Type A"); } }
First I wanna load Class Car Car myCar = new Car();
Do some stuff myCar.print(); => I am Type A
Change the Source Code sourceCode.replace("Type A", "Type b");
Recompile and CHANGE THE BYTE CODE in the SAME CLASSLOADER
Execute same Class again myCar.print(); => I am Type B
Hope I made my point clear.