Why does my application have randomly appearing bugs when running on the JRockit JVM that it doesn have when running on the Sun JVM?
You may be experiencing synchronization bugs in your application. It is not uncommon that such bugs are revealed when switching JVMs. The JVM specification and the Java language specification leaves plenty of room for optimization that may cause unsynchronized access to shared data, to cause different behavior on different JVMs.