首页 > 网站 > WEB开发 > 正文

hibernate注解日期类型读出数据带有时间00:00:00的解决办法

2024-04-27 15:14:50
字体:
来源:转载
供稿:网友

在字段的get方法上添加注解@Temporal(TemporalType.DATE)

    @Temporal(TemporalType.DATE)    @Column(name = "teachingtime", nullable = true)    public Date getTeachingtime() {        return teachingtime;    }    public void setTeachingtime(Date teachingtime) {        this.teachingtime = teachingtime;   

}

就可以了

       
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表