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; }
toplMUser.setCreateDate(new Date());this.toplMUserService.update(toplMUser);