Eclipse: editing and running code in real time

When editing Java code in Eclipse, I can modify the code while it works in different ways and make changes to them without reloading my program.

What is the technology behind this feature? Is this part of Eclipse, or is this what I can do with command line tools and tools supplied with the JDK?

+7
java eclipse linux hotswap
source share
2 answers
+3
source share

This function is usually called "hot code replace" and was introduced in Java 1.4 - this is part of the debugging interface of the Java virtual machine and various APIs in addition to this.

So this does not apply to Eclipse, but I do not think that any of the command line tools that come with the JDK supports it.

+2
source share

All Articles