Full List of JVM System Properties

You can check he full list of system properties of JVM and their current value for Oracle JDK or OpenJDK: 
1
java -XshowSettings:properties  -version
-version is used just to avoid displaying the usage of java command which is displayed if no standard option is specified.


You can also use:
jcmd <pid> VM.system_properties

Comments