According to the Oracle documentation, I can set the system properties of the Java process on the command line with the following syntax:
-Dproperty=value
But what happens when I do not specify a value, i.e. when I omit the equal value part:
-Dproperty
What value will be assigned to the system property? true ? Empty line? Or any string with undefined, specific implementation value?
java command-line
oberlies
source share