Hi,
JVM can run in many modes and selecting a proper mode can help improve your application performance
In servers, make sure JVM is runnig in server mode . This activates the server hotspot JIT.
It may need more time to start. But this delivers best performance.
Other modes of JVM are client and classic mode.
make sure -server, should be the first argument to java