Is there a way to set certain properties that will be applicable to all java processes ( java.exe, javaw.exefor windows) running on this machine?
More clearly, I want to use a specific time zone for all java processes running on this machine (without changing the system time zone).
I know that we can pass it as an argument -D, but it will only apply to this java process. But I need it in a different way - for every Java process.
Is there any way to do this?
source
share