首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hibernate 运用new Date() 时分秒丢失(使用Annotation 注解)

2012-11-14 
hibernate 使用new Date() 时分秒丢失(使用Annotation 注解)在使用oracle 10g 时候,数据库字段设置为date

hibernate 使用new Date() 时分秒丢失(使用Annotation 注解)
在使用oracle 10g 时候,数据库字段设置为date类型.用工具
自动生成的Entity

 @Temporal(TemporalType.DATE)    @Column(name="UPDATE_DATE")    public Date getUpdateDate() {        return this.updateDate;    }

修改成如下:
@Temporal(value = TemporalType.TIMESTAMP)      @Column(name="UPDATE_DATE")    public Date getUpdateDate() {        return this.updateDate;    }

这样就可以直接使用 new Date()了
toplMUser.setCreateDate(new Date());this.toplMUserService.update(toplMUser);

热点排行