Launching a Java Virtual Machine can be as easy as running java -classpath myapp.jar Main or even shorter java -jar myapp.jar if your using the Main-Class attribute in META-INF/MANIFEST.MF. This command will launch a JVM with default settings. To see which options that are available and their default values on our system execute: java -XX:+PrintFlagsFinal […]
The post ‘Default’ Oracle JVM Flags appeared first on blog..