vote up 2 vote down star

So I'm using hibernate and working with an application that manages time. What is the best way to deal with times in a 24 hour clock?

I do not need to worry about TimeZone issues at the beginning of this application but it would be best to ensure that this functionality is built in at the beginning.

I'm using hibernate as well, just as an fyi

flag

63% accept rate

4 Answers

vote up 3 vote down check

Store them as long ts = System.currentTimeMillis(). That format is actually TimeZone-safe as it return time in UTC.

If you only need time part, well, I'm not aware of built-in type in Hib, but writing your own type Time24 is trivial -- just implement either org.hibernate.UserType or org.hibernate.CompositeUserType (load=nullSafeGet and store=nullSafeSet methods in them).

See http://www.hibernate.org/hib_docs/reference/en/html/mapping-types.html#mapping-types-custom

But I'd still save absolute time anyway. May help in future.

P.S. That's all presuming storing Date is out of question for some reason. TimeZone in Date sometimes gets in the way, really. ;)

link|flag
vote up 1 vote down

Is there something wrong with using java.util.Date?

link|flag
java.util.Date is just a wrapper around the UTC long value, so often it's just as easy to just keep the long value yourself (see Vladimir Dyuzhev's answer). – Chris Carruthers Sep 23 '08 at 23:26
java.util.Date just uses the currentTimeMillis. – marcospereira Sep 24 '08 at 3:35
vote up 0 vote down

java.util.Date should be used; not a long (and definitely not a Calendar).

If you are using annotations be sure to use @Temporal

link|flag
Why not use a long for time? Calendar would definitely not be appropriate. – DanielHonig Sep 24 '08 at 3:30
vote up 0 vote down

I would suggest you look into using Joda, http://joda-time.sourceforge.net/, which offers much more intuitive and controllable time handling functionality than the core Date and Calendar implementations. JSR 310 is actually a proposition to include a new time API into java 7 that will be based largely on Joda. Joda also offers both timezone dependent Time handling and timezone independent time handling which eases difficulties when dealing with intervals.

link|flag
JODA is a great API for date and time. I am already using it in the same application for dealing with Periods, that Java 1.5 does not deal with as well as Joda – DanielHonig Sep 24 '08 at 19:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.