Disable Java bytecode verification to speedup app startup time


To do so, add -Xverify:none or -noverify as a parameter when executing an app:

java -jar -Xverify:none MyApp

For security reasons this is highly discouraged in production systems and should be used in development environments only (if at all).

Comments

Popular posts from this blog

Tuning ext4 for performance with emphasis on SSD usage

NetBeans 6.1: Working with Google´s Android SDK, Groovy and Grails