休眠时缺少@Temporal注释
2022-09-01 16:59:05
如果我们使用
@Column(name="birth_date", nullable=false, length=19)
public Date getBirthDate() {
return this.birthDate;
}
而不是
@Temporal(TemporalType.TIMESTAMP)
@Column(name="birth_date", nullable=false, length=19)
public Date getBirthDate() {
return this.birthDate;
}
如果我们使用不带注释的日期列属性,是否有任何副作用?@Temporal