美文网首页Java学习笔记
JPA/Hibernate插入date值到postgresql,

JPA/Hibernate插入date值到postgresql,

作者: Devid | 来源:发表于2016-11-24 10:30 被阅读169次

    用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,

        本文链接:https://www.haomeiwen.com/subject/jqjbpttx.html