Scope of the Java System Properties
In Java we use System.setProperty() method to set some system properties. According to this article the use of system properties is bit tricky. System.setProperty() can be an evil call. It is 100% thread-hostile It contains super-global variables It is extremely difficult to debug when these variables mysteriously change at runtime. My questions are as follows. How about the scope of the system properties? Are they specific for each and every Virtual Machine or they have a "Super Global nature" that shares the same set of properties over Each and every virtual machine instance? I guess the