Version 2

    Hibernate's built-in date, time and timestamp types assume that dates in the database are in Java's default time zone, implicitly. If this assumption is false (and you can't make it true by calling java.util.TimeZone.setDefault), you can configure Hibernate to map to a UserType that does something else. For example, given a MS SQL Server database like:

    CREATE TABLE ... (
        creationDate datetime NULL
    

     

    or an Oracle database like:

     

    CREATE TABLE ... (
        creationDate DATE
    

     

    You can use a Hibernate mapping like:

    <property name="creationDate" type="com.domain.HibernateUTC$DateType"/>
    

    Here's an example implementation of the necessary Java software:

     

    package com.domain;
    
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Types;
    import java.util.Date;
    
    /** Hibernate UserType definitions like date, time and timestamp,
     * but using the UTC TimeZone (not the default TimeZone).
     */
    public abstract class HibernateUTC implements net.sf.hibernate.UserType {
    
        public static final int[] SQL_TYPES = {Types.TIMESTAMP};
    
        /** Get the type codes (from <code>java.sql.Types</code>) of columns mapped by this type. */
        public int[] sqlTypes()
        {
            return SQL_TYPES;
        }
    
        /** Compare the persistent state of two objects returned by <code>nullSafeGet</code>. */
        public boolean equals(Object x, Object y)
        {
            return (x == null) ? (y == null) : x.equals(y);
        }
    
        /** Are instances of this type mutable? */
        public boolean isMutable()
        {
            return true;
        }
    
        /** Get the class of objects returned by <code>nullSafeGet</code>. */
        public Class returnedClass()
        {
            return objectClass;
        }
    
        /** The class of objects returned by <code>nullSafeGet</code>.
         * Currently, returned objects are derived from this class, not exactly this class.
         */
        protected Class objectClass = Date.class;
    
        /** Like a Hibernate date, but using the UTC TimeZone (not the default TimeZone). */
        public static class DateType extends HibernateUTC {
    
            public Object deepCopy(Object value)
            {
                return (value == null) ? null : new java.sql.Date(((Date)value).getTime());
            }
    
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner)
                throws SQLException
            {
                return rs.getDate(names[0], UTCCalendar.getCalendar());
            }
    
            public void nullSafeSet(PreparedStatement st, Object value, int index)
                throws SQLException
            {
                if ( ! (value instanceof java.sql.Date)) value = deepCopy(value);
                st.setDate(index, (java.sql.Date)value, UTCCalendar.getCalendar());
            }
    
        }
    
        /** Like a Hibernate time, but using the UTC TimeZone (not the default TimeZone). */
        public static class TimeType extends HibernateUTC {
    
            public Object deepCopy(Object value)
            {
                return (value == null) ? null : new java.sql.Time(((Date)value).getTime());
            }
    
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner)
                throws SQLException
            {
                return rs.getTime(names[0], UTCCalendar.getCalendar());
            }
    
            public void nullSafeSet(PreparedStatement st, Object value, int index)
                throws SQLException
            {
                if ( ! (value instanceof java.sql.Time)) value = deepCopy(value);
                st.setTime(index, (java.sql.Time)value, UTCCalendar.getCalendar());
            }
    
        }
    
    }
    

     

    Note, the implementation above has a bug in it. The static SQL_TYPES 'overridden' in the inner subclasses are in fact not overridden, so the Type in the SQL_TYPE array returned by the 'sqlTypes' method will always be of type Types.TIMESTAMP. The fixed version of this code is posted below:

    public abstract class HibernateUTC implements UserType {
    
        /** the SQL type this type manages */
        protected static int[] SQL_TYPES_UTC = {Types.TIMESTAMP};
    
        /**
         * @see net.sf.hibernate.UserType#sqlTypes()
         */
        public int[] sqlTypes() {        
            return SQL_TYPES_UTC;
        }
    
        /**
         * @see net.sf.hibernate.UserType#equals(java.lang.Object, java.lang.Object)
         */
        public boolean equals(Object x, Object y) {
            return (x == null) ? (y == null) : x.equals(y);
        }
    
        /**
         * @see net.sf.hibernate.UserType#isMutable()
         */
        public boolean isMutable() {
            return true;
        }
    
        /**
         * @see net.sf.hibernate.UserType#returnedClass()
         */
        public Class returnedClass() {
            return objectClass;
        }
    
        /**
         * The class of objects returned by <code>nullSafeGet</code>. Currently,
         * returned objects are derived from this class, not exactly this class.
         */
        protected Class objectClass = Date.class;
    
        /**
         * Like a Hibernate date, but using the UTC TimeZone (not the default
         * TimeZone).
         */
        public static class DateType extends HibernateUTC {
            protected static int[] SQL_TYPES_DATE = {Types.DATE};
    
            /**
             * @see net.sf.hibernate.UserType#sqlTypes()
             */
            public int[] sqlTypes() {        
                return SQL_TYPES_DATE;
            }
    
           
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                return (value == null) ? null : new java.sql.Date(((Date) value).getTime());
    
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                return rs.getDate(names[0], sUTCCalendar);
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (!(value instanceof java.sql.Date))
                    value = deepCopy(value);
                st.setDate(index, (java.sql.Date) value, sUTCCalendar);
            }
        }
    
        /**
         * Like a Hibernate time, but using the UTC TimeZone (not the default
         * TimeZone).
         */
        public static class TimeType extends HibernateUTC {
    
            protected static int[] SQL_TYPES_TIME = {Types.TIME};
    
            /**
             * @see net.sf.hibernate.UserType#sqlTypes()
             */
            public int[] sqlTypes() {        
                return SQL_TYPES_TIME;
            }
           
    
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                return (value == null) ? null : new java.sql.Time(((Date) value).getTime());
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                return rs.getTime(names[0], sUTCCalendar);
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (!(value instanceof java.sql.Time))
                    value = deepCopy(value);
                st.setTime(index, (java.sql.Time) value, sUTCCalendar);
            }
        }
    
        /**
         * Like a Hibernate timestamp, but using the UTC TimeZone (not the default
         * TimeZone).
         */
        public static class TimestampType extends HibernateUTC {
    
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                return (value == null) ? null : new java.sql.Timestamp(((Date) value).getTime());
    
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                return rs.getTimestamp(names[0], sUTCCalendar);
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
    
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (!(value instanceof java.sql.Timestamp))
                    value = deepCopy(value);
                st.setTimestamp(index, (java.sql.Timestamp) value, sUTCCalendar);
            }
        }
    
        /** the Calendar to hold the UTC timezone */
        private static Calendar sUTCCalendar=Calendar.getInstance();
    
        static {
            // set the timezone for the calendar to UTC (= GMT)
            sUTCCalendar.setTimeZone(TimeZone.getTimeZone("GMT"));
        }
    }
    

    Regards,

    Matt


     

    One problem with the above approach (at least in Hibernate 2) is that HQL queries can "silently fail" if you forget to pass Hibernate.custom(...) as the parameter type for UTC dates. The time zone conversion isn't done.

    Here's an alternative UserType that uses a BIGINT as the database data type. The value is the long representation of a java.util.Date. No silent failures here!

    public class UtcDateTimeType implements UserType {
    
        
        /**
         * SQL type.
         */
        private static final int[] SQL_TYPES = { Types.BIGINT };
        
        /** 
         * Make a copy of the date.
         * @see UserType#deepCopy(java.lang.Object)
         */
        public Object deepCopy(Object obj) throws HibernateException {
            return (obj == null) ? null : new Date(((Date)obj).getTime());
        }
        
        /**
         * Compare via {@link Object#equals(java.lang.Object)}.
         * @see UserType#equals(java.lang.Object, java.lang.Object)
         */
        public boolean equals(Object x, Object y) {
            return (x == null) ? (y == null) : x.equals(y);
        }
        
        /**
         * Dates are mutable.
         * @see net.sf.hibernate.UserType#isMutable()
         */
        public boolean isMutable() {
            return true;
        }
        
        /**
         * Return an instance of the date or null if no value is specified.
         * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
         */
        public Object nullSafeGet(ResultSet rs, String[] columns, Object owner)
                throws HibernateException, SQLException {
    
            long value = rs.getLong(columns[0]);
            Date date;
            if(rs.wasNull()) {
                date = null;
            } else {
                date = new Date(value);
            }
            return date; 
            
        }
    
        /**
         * Set an instance of the date into the database field.
         * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
         */
        public void nullSafeSet(PreparedStatement statement, Object value, int index)
                throws HibernateException, SQLException {
            
            if(value == null) {
                statement.setNull(index, Types.BIGINT);
            } else {
                Date date = (Date)value;
                statement.setLong(index, date.getTime());
            }
        }
        
        /**
         * Return the {@link Date} class.
         * @see net.sf.hibernate.UserType#returnedClass()
         */
        public Class returnedClass() {
            return Date.class;
        }
        
        /**
         * Return the supported SQL types.
         * @see net.sf.hibernate.UserType#sqlTypes()
         */
        public int[] sqlTypes() {
            return SQL_TYPES;
        }
    
    }
    
    

    For completeness, you could also write a routine that checks the mapping metadata at startup and throws an exception if a date property is not mapped using the user type. We do this to avoid accidental use of the build-in timestamp type.

    Enjoy,

    -Rob

    ======================================================================

    Here is my modification to the above.

    It is Hibernate3 compatible, which previous examples aren't, but word of caution, we don't use caching so I can't vouch for assemble and disassemble methods. The compiler accepts them, that's all I say. It adds a Calendar handler which is the big change.

    -- Steve Cohen 10/13/2007

    package com.domain;
    
    import java.io.Serializable;
    import java.sql.Date;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Timestamp;
    import java.sql.Types;
    import java.util.Calendar;
    import java.util.TimeZone;
    
    import org.hibernate.HibernateException;
    import org.hibernate.cfg.Environment;
    import org.hibernate.usertype.UserType;
    
    public abstract class HibernateUTC implements UserType {
    
        /** the SQL type this type manages */
        protected static int[] SQL_TYPES_UTC = {Types.TIMESTAMP};
    
        /**
         * @see net.sf.hibernate.UserType#sqlTypes()
         */
        public int[] sqlTypes() {        
            return SQL_TYPES_UTC;
        }
    
        /**
         * @see net.sf.hibernate.UserType#equals(java.lang.Object, java.lang.Object)
         */
        public boolean equals(Object x, Object y) {
            return (x == null) ? (y == null) : x.equals(y);
        }
    
        /**
         * @see net.sf.hibernate.UserType#isMutable()
         */
        public boolean isMutable() {
            return true;
        }
    
        /**
         * @see net.sf.hibernate.UserType#returnedClass()
         */
        public Class returnedClass() {
            return objectClass;
        }
    
        /**
         * The class of objects returned by <code>nullSafeGet</code>. Currently,
         * returned objects are derived from this class, not exactly this class.
         */
        protected Class objectClass = Date.class;
        
        /**
         * Get a hashcode for the instance, consistent with persistence "equality"
         */
        public int hashCode(Object x) 
        throws HibernateException 
        {
            return x.hashCode();
        }
        
        /**
         * Transform the object into its cacheable representation. At the very least this
         * method should perform a deep copy if the type is mutable. That may not be enough
         * for some implementations, however; for example, associations must be cached as
         * identifier values. (optional operation)
         *
         * @param value the object to be cached
         * @return a cachable representation of the object
         * @throws HibernateException
         */
        public Serializable disassemble(Object value) 
        throws HibernateException
        {
            return (Serializable) deepCopy(value);
        }
    
        /**
         * Reconstruct an object from the cacheable representation. At the very least this
         * method should perform a deep copy if the type is mutable. (optional operation)
         *
         * @param cached the object to be cached
         * @param owner the owner of the cached object
         * @return a reconstructed object from the cachable representation
         * @throws HibernateException
         */
        public Object assemble(Serializable cached, Object owner) 
        throws HibernateException
        {
            return deepCopy(cached);
        }
    
        /**
         * During merge, replace the existing (target) value in the entity we are merging to
         * with a new (original) value from the detached entity we are merging. For immutable
         * objects, or null values, it is safe to simply return the first parameter. For
         * mutable objects, it is safe to return a copy of the first parameter. For objects
         * with component values, it might make sense to recursively replace component values.
         *
         * @param original the value from the detached entity being merged
         * @param target the value in the managed entity
         * @return the value to be merged
         */
        public Object replace(Object original, Object target, Object owner) 
        throws HibernateException 
        {
            return deepCopy(original);
        }
    
    
    
        /**
         * Like a Hibernate date, but using the UTC TimeZone (not the default
         * TimeZone).
         */
        public static class DateType extends HibernateUTC {
            protected static int[] SQL_TYPES_DATE = {Types.DATE};
    
            /**
             * @see net.sf.hibernate.UserType#sqlTypes()
             */
            public int[] sqlTypes() {        
                return SQL_TYPES_DATE;
            }
    
           
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                return (value == null) ? null : new java.sql.Date(((Date) value).getTime());
    
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                return rs.getDate(names[0], sUTCCalendar);
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (!(value instanceof java.sql.Date))                
                    value = deepCopy(value);
                st.setDate(index, (java.sql.Date) value, sUTCCalendar);
            }
        }
    
        /**
         * Like a Hibernate time, but using the UTC TimeZone (not the default
         * TimeZone).
         */
        public static class TimeType extends HibernateUTC {
    
            protected static int[] SQL_TYPES_TIME = {Types.TIME};
    
            /**
             * @see net.sf.hibernate.UserType#sqlTypes()
             */
            public int[] sqlTypes() {        
                return SQL_TYPES_TIME;
            }
           
    
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                return (value == null) ? null : new java.sql.Time(((Date) value).getTime());
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                return rs.getTime(names[0], sUTCCalendar);
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (!(value instanceof java.sql.Time))
                    value = deepCopy(value);
                st.setTime(index, (java.sql.Time) value, sUTCCalendar);
            }
        }
    
        /**
         * Like a Hibernate timestamp, but using the UTC TimeZone (not the default
         * TimeZone).
         */
        public static class TimestampType extends HibernateUTC {
    
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                return (value == null) ? null : new java.sql.Timestamp(((Date) value).getTime());
    
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                return rs.getTimestamp(names[0], sUTCCalendar);
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
    
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (!(value instanceof java.sql.Timestamp))
                    value = deepCopy(value);
                st.setTimestamp(index, (java.sql.Timestamp) value, sUTCCalendar);
            }
            
        }
    
        public static class CalendarType extends HibernateUTC {
    
            public Class getReturnedClass() {
                return Calendar.class;
            }
    
            /**
             * @see net.sf.hibernate.UserType#deepCopy(java.lang.Object)
             */
            public Object deepCopy(Object value) {
                if (value == null) {
                    return null;
                }
                Calendar c = (Calendar) sUTCCalendar.clone();
                c.setTimeInMillis(((Calendar) value).getTimeInMillis());
                return c;
            }
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeGet(java.sql.ResultSet, java.lang.String[], java.lang.Object)
             */
            public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
                Timestamp ts = rs.getTimestamp(names[0], sUTCCalendar);
                if (ts == null || rs.wasNull() ) {
                    return null;
                }
                Calendar cal = (Calendar) sUTCCalendar.clone();
                if ( Environment.jvmHasTimestampBug() ) {
                    cal.setTime( new Date( ts.getTime() + ts.getNanos() / 1000000 ) );
                }
                else {
                    cal.setTime(ts);
                }
                return cal;
                
            }
    
    
            /**
             * @see net.sf.hibernate.UserType#nullSafeSet(java.sql.PreparedStatement, java.lang.Object, int)
             */
    
            public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
                if (value == null) {
                    st.setNull(index, Types.TIMESTAMP);
                } else {
                    Timestamp t = new Timestamp(((Calendar) value).getTimeInMillis());
                    st.setTimestamp(index, t, sUTCCalendar);
                }
            }
            
            /* (non-Javadoc)
             * @see org.hibernate.usertype.UserType#equals(java.lang.Object, java.lang.Object)
             */
            public boolean equals(Object x, Object y)
            {
                if (x==y) return true;
                if (x==null || y==null) return false;
    
                Calendar calendar1 = (Calendar) x;
                Calendar calendar2 = (Calendar) y;
    
                return calendar1.getTimeInMillis() == calendar2.getTimeInMillis();
            }
            /* (non-Javadoc)
             * @see org.hibernate.usertype.UserType#hashCode(java.lang.Object)
             */
            public int hashCode(Object x)
                throws HibernateException
            {
                return new Long(((Calendar) x).getTimeInMillis()).hashCode();
            }
        }
    
        /**
         * Note 071107: passing the static sUTCCalendar instance to the 
         * setTimestamp(), getTimestamp() calls above has concurrency issues, 
         * as some JDBC drivers do modify the supplied calendar instance.
         * More defensive code should create a new Calendar instance in UTC
         * and pass it to each getTimestamp() / setTimestamp() call.
         *
         */
    
        /** the Calendar to hold the UTC timezone */
        private static Calendar sUTCCalendar=Calendar.getInstance();
    
        static {
            // set the timezone for the calendar to UTC (= GMT)
            sUTCCalendar.setTimeZone(TimeZone.getTimeZone("UTC"));
        }
    }
    
    
    

    I've provided a variation on this which also implements UserVersionType and which "fixes" the problem in the note about some JDBC drivers modifying the calendar argument. See UserVersionType for non-default TimeZone.

    Roland Roberts, 2009-03-20