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.

link|improve this question
I looking for a function like: jrebel.change("car", myClassloader, newByteCode[]); – Martin Jul 10 '11 at 8:13
feedback

1 Answer

JRebel swaps the bytes for you after you recompile, you do not have to call an API to achieve that.

link|improve this answer
I do not wanna use jrebel with an application server etc. There wont be any .class files on the filesystem. I just need the functionality to swap byte code in memory – Martin Jul 11 '11 at 10:40
that would require some extra code writing indeed. I think SDK could help here zeroturnaround.com/resources/jrebel-plugins – Anton Arhipov Jul 12 '11 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.