According to the Oracle documentation, I can set system properties of a Java process on the command line with the following syntax:
-Dproperty=value
But what happens when I don't specify the value, i.e. when I omit the "equals value" part:
-Dproperty
What value will the system property be set to? true
? An empty string? Or any string with an undefined, implementation specific value?