详解date、timestamp:
Students.hbm.xml:
<property name="birthday" type="java.util.Date">
<column name="birthday" length="10" />
</property>
可将其type属性修改为上述表中的任意hibernate映射类型,从而在数据库中实现不同时间格式类型的存储方式。(注:在映射文件中,进行类型指定时,既可指定java数据类型,也可指定为hibernate数据类型)
eg:
<property name="birthday" type="timestamp">
<column name="birthday" length="10" />
</property>
数据库中: