The question: Is there some way to \"connect\" to a running JVM and change system properties (given by -Dproperty=value) without stopping the JVM and without having programmed a
you can do it using System.setProperty() method. for example: System.setProperty(key, value);