vote up 2 vote down star
1

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.

flag

54% accept rate

1 Answer

vote up 1 vote down

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|flag
good point, that is a valid workaround. – Thilo Jul 23 at 9:44

Your Answer

Get an OpenID
or

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