Is there any way to set certain properties that will be applicable for all java processes(java.exe
,javaw.exe
for windows) running on that machine ?
More clearly suppose I want to use a specific timezone to be applied for all java processes running in that machine(without changing the system timezone).
I know we can pass it as -D
argument, but it will be applicable only for that java process right.But I need it in the other way- for every java process started.
Is there any way to do that?