- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我们想在Hibernate中存储Date
,是否需要提供@Temporal
?
@Column(name = "Date_Open")
@Temporal(TemporalType.TIMESTAMP)
public Date getDateOpen() {
return this.dateOpen;
}
如果我们不使用@Temporal
注释,默认的TemporalType
会是什么?
如果未给出@Temporal
,默认值是什么?如果与TemporalType.Timestamp
一起给出,有什么好处?
最佳答案
@Temporal 不需要与 Date 一起使用,默认情况下 hibernate 会用 Timestamp 保存日期,我们可以使用 @Temporal 注解来指定 hibernate 保存日期、时间或时间戳的精度。在普通 Java API 中,未定义时间的时间精度。在处理时态数据时,您可能希望描述数据库中的预期精度。下面的Type用来表示java.util.Date的具体映射或 java.util.Calenda。
TemporalType.DATE: maps the date as java.sql.Date.
TemporalType.TIME: maps the date as java.sql.Time.
TemporalType.TIMESTAMP: maps the date as java.sql.Timestamp.
Here关于@temporal 的解释很好
另外关于日期字段中缺少 @Temporal 注释:
In plain Java APIs, the temporal precision of time is not defined. When dealing with temporal data you might want to describe the expected precision in database. Temporal data can have DATE, TIME, or TIMESTAMP precision (ie the actual date, only the time, or both). Use the @Temporal annotation to fine tune that.
From 2.2.2.1. Declaring basic property mappings.
This might indicate that the actual date representation in the database is not defined and to be sure it is better to specify it directly.
关于java - 如果我们想在 Hibernate 中存储日期,TemporalType = Timestamp 是否必要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43383514/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!