We are instrumenting byte code and we use Eclipse for software development.
We now have to following problem: when debugging, Eclipse is replacing our instrumented code with the compiled code using hot swap since it detects that it was changed.
In Eclipse I did not find any way to disable the feature: in the Hot Code Replace settings section I only see ways to enable/disable warnings.
As already answered we can disable auto build but I wanted to ask if there is a way (an option) to tell the JVM to disable the hot swap feature?
We could just start the JVM with the option disabled and we should not care about Eclipse or any other IDE/debugger swapping the code.