码迷,mamicode.com
首页 > 其他好文 > 详细

@PrePersist

时间:2017-07-12 13:41:08      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:数据   mil   update   变化   persist   new t   new   sys   created   

@PrePersist
public void prePersist() {
updatedAt = new Timestamp(System.currentTimeMillis());
createdAt = new Timestamp(System.currentTimeMillis());
}

/**
* 在持久化时,数据有变化,此方法会执行
*/
@PreUpdate
public void preUpdate() {
updatedAt = new Timestamp(System.currentTimeMillis());
}

@PrePersist

标签:数据   mil   update   变化   persist   new t   new   sys   created   

原文地址:http://www.cnblogs.com/xingzc/p/7154574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!