I have a java process currently running under a windows shell.
One of the threads responsible for serialisation is blocked indefinitely and as a result important information which is stored in memory is no longer being written to disk.
If I shutdown the process, the information will be lost.
It would be convenient if I could write and compile some new code and have it execute in the same memory space so that the said information could be serialised once more before I shutdown the process.
The process was started using a java -jar
command.
With the hotspot VM features, is there any way to achieve this?