Comparing hibernate-mapped dates? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T13:55:54Zhttp://stackoverflow.com/feeds/question/229143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates2Comparing hibernate-mapped dates?Maerch2008-10-23T09:49:59Z2008-10-28T16:51:17Z
<p>How can i map a date from a java object to a database with Hibernate? I try different approaches, but i am not happy with them. Why? Let me explain my issue. I have the following class [1] including the main method i invoke and with the following mapping [2]. The issue about this approach you can see, when you look at the console output.</p>
<blockquote>
<p>false </p>
<p>false</p>
<p>1</p>
<p>-1</p>
<p>1224754335648</p>
<p>1224754335000 </p>
<p>Thu Oct 23 11:32:15 CEST 2008</p>
<p>Clock@67064</p>
</blockquote>
<p>As you can see the the to dates are not exactly equal, although they should, so it is hard to compare them without goofing around with return value of <code>getTime</code>. I also tried java.sql.Date, Timestamp and date instead of timestamp in the mapping, but without success. </p>
<p>I wonder why the last three digits are zero and if this is a hibernate or a java issue or my own stupidity.</p>
<p>Thank you for reading.</p>
<p>[1]</p>
<pre><code>public class Clock {
int id;
java.util.Date date;
public static void main(String[] args) {
HibernateUtil.init();
HibernateUtil.getSessionFactory().getCurrentSession().beginTransaction();
Clock clock = new Clock();
clock.date = new java.util.Date();
HibernateUtil.getSessionFactory().getCurrentSession().saveOrUpdate(clock);
HibernateUtil.getSessionFactory().getCurrentSession().getTransaction().commit();
HibernateUtil.getSessionFactory().getCurrentSession().beginTransaction();
Clock fromDBClock = (Clock)HibernateUtil.getSessionFactory()
.getCurrentSession().get(Clock.class, 1);
System.out.println(clock.date.equals(fromDBClock.date));
System.out.println(fromDBClock.date.equals(clock.date));
System.out.println(clock.date.compareTo(fromDBClock.date));
System.out.println(fromDBClock.date.compareTo(clock.date));
System.out.println(clock.date.getTime());
System.out.println(fromDBClock.date.getTime());
System.out.println(clock.date.toString());
System.out.println(fromDBClock.toString());
HibernateUtil.getSessionFactory().getCurrentSession().getTransaction().commit();
HibernateUtil.end();
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public java.util.Date getDate() {
return date;
}
public void setDate(java.util.Date date) {
this.date = date;
}
}
</code></pre>
<p>[2]</p>
<pre><code><?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="Clock" table="CLOCK">
<id name="id" column="CLOCK_ID">
<generator class="native"/>
</id>
<property name="date" type="timestamp"/>
</class>
</hibernate-mapping>
</code></pre>
http://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates/229240#2292401Answer by Vladimir Dyuzhev for Comparing hibernate-mapped dates?Vladimir Dyuzhev2008-10-23T10:24:37Z2008-10-23T10:24:37Z<p>Apparently, TIMESTAMP type on your target RDBMS (<em>what are you using, btw?</em>) doesn't store milliseconds. Try to find another native type that does, or map your time onto something else, like long = ms-since-epoch.</p>
http://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates/230484#2304842Answer by Brian Deterling for Comparing hibernate-mapped dates?Brian Deterling2008-10-23T16:45:05Z2008-10-23T16:45:05Z<p>SQL Server stores datetime with a precision of 3 milliseconds which can definitely cause the problem you're seeing. One fallout of this is that 23:59:59.999 in Java ends up being the next day in SQL Server. I've never had a problem with Oracle, Informix, or MySQL, but other databases may have less precision also. You can work around it by using Hibernate custom types. You have to round to something less precise than the underlying database precision when you write out the date values. Search for UserType in the Hibernate documentation, you'll be changing the nullSafeSet method to do the rounding.</p>
http://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates/231434#2314341Answer by Skip Head for Comparing hibernate-mapped dates?Skip Head2008-10-23T20:44:21Z2008-10-23T20:44:21Z<p>MySql DateTime precision is only to the second. Java Date precision is to the millisecond.
That is why the last three digits are zeros after it has been put in the database.</p>
<p>Do this to your original Date:</p>
<p>date = date.setTime((date.getTime() / 1000) * 1000);</p>
<p>This will set it to the last exact second, and all your comparisons will then match.</p>
<p>(BTW,
System.out.println(fromDBClock.toString());
should be
System.out.println(fromDBClock.date.toString());</p>
http://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates/244022#2440220Answer by Blade for Comparing hibernate-mapped dates?Blade2008-10-28T16:51:17Z2008-10-28T16:51:17Z<p>Personnaly, I truncate every date I receive in my POJO object with the Apache commons lang package class named DateUtils.</p>
<p>See [Apache commons site][1]</p>
<p>[1]: <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/time/DateUtils.html#truncate" rel="nofollow">http://commons.apache.org/lang/api/org/apache/commons/lang/time/DateUtils.html#truncate</a>(java.util.Date, int)</p>