File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Java in General and the fly likes Setting default timezone for Application Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Setting default timezone for Application" Watch "Setting default timezone for Application" New topic
Author

Setting default timezone for Application

raja patil
Greenhorn

Joined: May 26, 2008
Posts: 20
hello,

this is in continuation of other thread "puzzling Parsing Of dates"
while dissecting above problem I saw recommendations to have
application's default Timezone to tackle date time processing and persistence
issues. The idea is let application be hosted on server in any time zone
it will have fixed time zone so that all dates and times are persisted and
retrieved wrt specific time zone context.

If anybody differs with this your comments are welcomed and are valuable to me.

But I also came to know that application specific timezones can not be set but
I have to set timezone for entire JVM i.e. for all the applications using that JVM.

its suggested that JDK should be started with -Duser.timezone="<tz to set>"

I am using Spring, blazeDS, spring-security, spring-flex and iBatis at backend
so I am not starting JVM manually. So How can i use this parameter to set default timezone of "GMT+0530"
please guide me where shall i put this so that JVM uses this timezone by default.

Thanks and regards

Raja
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12921
    
    3

Class TimeZone has a setDefault() method.


Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Setting default timezone for Application
 
Similar Threads
TimeZone conversion in client/server architecture
set JVM timezone in Linux
want client's time zone from server side
problem with new Date()
want client's time zone from server side