JPA/Hibernate插入date值到postgresql,丢失时分秒的解决方案

用hibernate插入java.util.Date数据时发现 时分秒 会丢失。
2014-05-30 15:59:16.921 在postgresql数据库中显示2014-05-30 00:00:00.0

后来查了一下是因为Model类的 annotation 中的写成 @Temporal(TemporalType.DATE)
正确应该要写成 @Temporal(TemporalType.TIMESTAMP)

完整写法如下:

@Column(name = "update_time")
@Temporal(TemporalType.TIMESTAMP)
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME)
private Date updateTime = new Date();    // 更新时间

你可能感兴趣的:(JPA/Hibernate插入date值到postgresql,丢失时分秒的解决方案)