Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remove -Djava.compiler=NONE option for remote debugging?

Status
Not open for further replies.

kknight2046

Programmer
Jul 6, 2006
17
0
0
US
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top