kknight2046
Programmer
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 question is, can I remove the '-Djava.compiler=NONE' option but still enable remote debugging?
Thanks.
-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 question is, can I remove the '-Djava.compiler=NONE' option but still enable remote debugging?
Thanks.