live without -Djava.compiler=NONE option for remote debugging?

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.

[426 byte] By [KKnighta] at [2007-11-26 17:40:45]
# 1
Yes. You should be able to remote debug without that option. Have you tried it without that option and did you see any problem?
swamyva at 2007-7-9 0:08:56 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Thank you for reply.Since I am using Java 6, I found correct options for debug: -agentlib:jdwp=transport=dt_socket,address=9004,server=y,suspend=n
KKnighta at 2007-7-9 0:08:56 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...