There is two ways to disable the JIT
-Djava.compiler=NONE
or this will almost never compile anything
-XX:CompileThreshold=2000000000
or on IBM JVM
-nojit
Disabling the JIT can slow down your code a lot e.g. 50x but not always. If you spend most of your time doing IO or GUI updates you might find it makes little difference.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…