When you change Java code while in a debugging session, Eclipse will upload the updated class files into the running JVM (hot code replace). This even works for remote applications.

Is there a way to turn Hot Code Replace off (within Eclipse, not at the remote JVM)?

We want to be able to debug our test and staging servers remotely, but prevent unintentional updates to the builds that they are running.

link|improve this question

55% accept rate
feedback

1 Answer

Here they say, that if HCR does not work, you may have 'automatic building' turned off.

So, maybe just switching off automatic building for debugging solves your problem.

link|improve this answer
good point, that is a valid workaround. – Thilo Jul 23 '09 at 9:44
feedback

Your Answer

 
or
required, but never shown

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