JVM Options List - still being maintained post Oracle?
Asked Answered
C

2

28

Is the JVM Options List still being maintained anywhere? It seems to have disappeared from Oracle's website, but luckily the Wayback Machine has a copy.

Cyanine answered 20/10, 2011 at 8:40 Comment(0)
K
43

Use java -XX:+PrintFlagsFinal to print available -XX options. More diagnostic and experimental options can be added to list with following options: -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions (for Sun) -XX:+UnlockInternalVMOptions (for JRockit)

NOTE: Current version of javac docs for Java 8 contains list of most -XX options: https://docs.oracle.com/javase/8/docs/technotes/tools/windows/java.html

Oracle's guide with 80+ options: http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html

Pierre Laporte's service with full search for 907 options (supports JDK 8): http://jvm-options.tech.xebia.fr/

Stas's guide with 800+ options: http://stas-blogspot.blogspot.com/2011/07/most-complete-list-of-xx-options-for.html

Collection of options for 1.6.0 and older versions of JVM: http://www.xenoc.demon.co.uk/A%20Collection%20of%20JVM%20Options.htm

Knotts answered 27/11, 2011 at 17:1 Comment(2)
Some more good links on similar question : https://mcmap.net/q/36746/-print-all-jvm-flagsBigford
Thanks a lot. This info is very well hidden I feelPacifa
J
5

I used the same document very frequently as a reference, but unfortunately the original author was not maintaining it anymore. I think it is still a valid list especially for older JVMs.

The www.xenoc.demon.co.uk referenced by Andriy is no more available...

So I'm trying to keep an updated version of the document here A Collection of JVM Options.

Jacquelinjacqueline answered 20/5, 2013 at 11:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.