To enable remote debugging, we launch the java application using the options:
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=4000 -Xdebug -Xnoagent -Djava.compiler=NONE
The '-Djava.compiler=NONE' option slowed down the application, since it turned off the just-in-time compilation. My...