我正在使用带有Springboot 1.5.14的休眠5.0.12。
我的实体有这个编号
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name = "UserID", nullable = true)
public int getUserId() {
return this.userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
在我的数据库中有的礼物记录id = 0。
如果我阅读,编辑并保存了这些记录,休眠将使用生成的新ID复制这些记录。
如何配置休眠以允许id = 0值?
在eclispelink中,此配置为 "eclipselink.id-validation" = "NULL"
慕娘9325324
繁花如伊
相关分类