Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的表中插入值,我必须在此之前格式化一些日期。
我不知道我是否需要在我的 POJO 或 Hibernate 中执行此操作。
也许存在注释来指定 POJO 中的格式?
(对不起我的错误和语言,我最近会说英语)
提前致谢。
使用 @Temporal 注释。
时间应该是
@Temporal(TemporalType.TIME)
您必须使用注释来注释您的java.lang.Date或java.sql.Timestamp字段@Temporal(TemporalType.TIMESTAMP)。
java.lang.Date
java.sql.Timestamp
@Temporal(TemporalType.TIMESTAMP)