Hi everyone,
I have a strange problem when using GregorianCalendar type. I have a field in my User.java of type Calendar and I have the following entry in my User.hbm.xml mapping file:
Code:
<property name="lastActiveAsUser" type="java.util.GregorianCalendar">
<column name="LAST_ACTIVE_AS_USER" length="19" />
</property>
I am using mysql as my backend database and LAST_ACTIVE_AS_USER is of type DATETIME. My problem is that everytime a record is inserted into the tbl_user, the month part of the date gets incremented by one. However, the day and year are correct. Is there something wrong in my approach? What other alternatives are there? I would appreciate any help in this regard.
Thanks