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.