In application, with the Sun JVM, you have the following options:
java -Djava.compiler=NONE myapp or SET JAVA_COMPILER=NONE (Set the environment variable JAVA_COMPILER) java myapp or JAVA -NOJIT MYAPP
HKEY_CURRENT_USER\Software\Microsoft\Java VM\EnableJIT
With the latest JVM this is not necessarily true. To retrieve the line numbers, make sure that the classes are compiled with the debugging infos.
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
Written and compiled by Réal Gagnon ©1998-2012
[ home ]