Is There a List of JVM System Properties
(Doc ID 2653647.1)
Last updated on MARCH 31, 2023
Applies to:
Java SE JDK and JRE - Version 7 and laterInformation in this document applies to any platform.
Goal
Where can developers find a consolidated list of system properties used by the JVM? There are documents here and there that mention system properties. Applications seem to frequently require them to be set. The definition set out in the 'java' command reference is not enough:
-Dproperty=value
Sets a system property value. The property variable is a string with no spaces that represents the name of the property. The value variable is a string that represents the value of the property. If value is a string with spaces, then enclose it in quotation marks (for example -Dfoo="foo bar").
Sets a system property value. The property variable is a string with no spaces that represents the name of the property. The value variable is a string that represents the value of the property. If value is a string with spaces, then enclose it in quotation marks (for example -Dfoo="foo bar").
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |