我有以下课程描述片段:
...
@Column(name = "invalidate_token_date")
@Temporal(TemporalType.TIMESTAMP)
private LocalDateTime invalidateTokenDate;
....
此代码不起作用,因为@Temporal
不支持LocalDateTime.
我看到了如何使用 Joda-Time 中 LocalDateTime 的建议但我使用Java 8。
请给我一些建议。
的 P.S。
这是我目前的JPA依赖:
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
</dependency>
答案 0 :(得分:43)
对于任何Hibernate 5.x用户,都有
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-java8</artifactId>
<version>5.0.0.Final</version>
</dependency>
你不需要做任何其他事情。只需添加依赖项,Java 8时间类型应该像任何其他基本类型一样工作,不需要注释。
private LocalDateTime invalidateTokenDate;
注意:虽然这不会保存到timestamp
类型。使用MySQL进行测试,它保存为datetime
类型。
答案 1 :(得分:22)
由于Hibernate不支持它,您需要实现用户类型,如this示例所示。
import org.hibernate.HibernateException;
import org.hibernate.engine.spi.SessionImplementor;
import org.hibernate.type.StandardBasicTypes;
import org.hibernate.usertype.EnhancedUserType;
import java.io.Serializable;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.Date;
public class LocalDateTimeUserType implements EnhancedUserType, Serializable {
private static final int[] SQL_TYPES = new int[]{Types.TIMESTAMP};
@Override
public int[] sqlTypes() {
return SQL_TYPES;
}
@Override
public Class returnedClass() {
return LocalDateTime.class;
}
@Override
public boolean equals(Object x, Object y) throws HibernateException {
if (x == y) {
return true;
}
if (x == null || y == null) {
return false;
}
LocalDateTime dtx = (LocalDateTime) x;
LocalDateTime dty = (LocalDateTime) y;
return dtx.equals(dty);
}
@Override
public int hashCode(Object object) throws HibernateException {
return object.hashCode();
}
@Override
public Object nullSafeGet(ResultSet resultSet, String[] names, SessionImplementor session, Object owner)
throws HibernateException, SQLException {
Object timestamp = StandardBasicTypes.TIMESTAMP.nullSafeGet(resultSet, names, session, owner);
if (timestamp == null) {
return null;
}
Date ts = (Date) timestamp;
Instant instant = Instant.ofEpochMilli(ts.getTime());
return LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
}
@Override
public void nullSafeSet(PreparedStatement preparedStatement, Object value, int index, SessionImplementor session)
throws HibernateException, SQLException {
if (value == null) {
StandardBasicTypes.TIMESTAMP.nullSafeSet(preparedStatement, null, index, session);
} else {
LocalDateTime ldt = ((LocalDateTime) value);
Instant instant = ldt.atZone(ZoneId.systemDefault()).toInstant();
Date timestamp = Date.from(instant);
StandardBasicTypes.TIMESTAMP.nullSafeSet(preparedStatement, timestamp, index, session);
}
}
@Override
public Object deepCopy(Object value) throws HibernateException {
return value;
}
@Override
public boolean isMutable() {
return false;
}
@Override
public Serializable disassemble(Object value) throws HibernateException {
return (Serializable) value;
}
@Override
public Object assemble(Serializable cached, Object value) throws HibernateException {
return cached;
}
@Override
public Object replace(Object original, Object target, Object owner) throws HibernateException {
return original;
}
@Override
public String objectToSQLString(Object object) {
throw new UnsupportedOperationException();
}
@Override
public String toXMLString(Object object) {
return object.toString();
}
@Override
public Object fromXMLString(String string) {
return LocalDateTime.parse(string);
}
}
然后可以在带有@Type注释的映射中使用新的usertype。例如,
@Type(type="com.hibernate.samples.type.LocalDateTimeUserType")
@Column(name = "invalidate_token_date")
private LocalDateTime invalidateTokenDate;
@Type注释需要实现userType接口的类的完整路径;这是用于生成映射列的目标类型的工厂。
Here's如何在JPA2.1中做同样的事情
答案 2 :(得分:9)
如果您可以使用Java EE 7,那么更优雅solution:
&GT;&GT;实现这个:
@Converter(autoApply = true)
public class LocalDateTimeConverter implements AttributeConverter<LocalDateTime, Date> {
@Override
public Date convertToDatabaseColumn(LocalDateTime date) {
if (date == null){
return null;
}
return date.toDate();
}
@Override
public LocalDateTime convertToEntityAttribute(Date value) {
if (value == null) {
return null;
}
return LocalDateTime.fromDateFields(value);
}
}
&GT;&GT;使用方式如下:
...
@Column(name = "invalidate_token_date")
private LocalDateTime invalidateTokenDate;
....
值(autoApply = true)
表示@Converter
会自动用于转换JPA实体中的每个LocalDateTime
属性。
顺便说一下,AttributeConverter
也非常适合映射枚举。
答案 3 :(得分:7)
由于这是一个非常常见的问题,所以此答案基于this article,我写了用JPA映射日期和时间戳的最佳方法。
从2.2版开始,JPA支持映射Java 8 Date/Time API,例如LocalDateTime
,LocalTime
,LocalDateTimeTime
,OffsetDateTime
或OffsetTime
。 / p>
此外,即使使用JPA 2.1,Hibernate 5.2默认也支持所有Java 8 Date / Time API。
在Hibernate 5.1和5.0中,您必须添加hibernate-java8
Maven依赖项。
因此,假设我们具有以下实体:
@Entity(name = "UserAccount")
@Table(name = "user_account")
public class UserAccount {
@Id
private Long id;
@Column(name = "first_name", length = 50)
private String firstName;
@Column(name = "last_name", length = 50)
private String lastName;
@Column(name = "subscribed_on")
private LocalDateTime subscribedOn;
//Getters and setters omitted for brevity
}
请注意,subscribedOn
属性是一个LocalDateTime
Java对象。
坚持UserAccount
时:
UserAccount user = new UserAccount()
.setId(1L)
.setFirstName("Vlad")
.setLastName("Mihalcea")
.setSubscribedOn(
LocalDateTime.of(
2020, 5, 1,
12, 30, 0
)
);
entityManager.persist(user);
Hibernate生成正确的SQL INSERT语句:
INSERT INTO user_account (
first_name,
last_name,
subscribed_on,
id
)
VALUES (
'Vlad',
'Mihalcea',
'2020-05-01 12:30:00.0',
1
)
在获取UserAccount
实体时,我们可以看到从数据库中正确获取了LocalDateTime
:
UserAccount userAccount = entityManager.find(
UserAccount.class, 1L
);
assertEquals(
LocalDateTime.of(
2020, 5, 1,
12, 30, 0
),
userAccount.getSubscribedOn()
);
答案 4 :(得分:0)
我创建了一个简单的插件,允许我们使用java.time。*类。此时,实现了最常用的类。看看这里:https://github.com/garcia-jj/jpa-javatime。
如果您使用的是Maven,则这是工件配置:
<dependency>
<groupId>br.com.otavio</groupId>
<artifactId>jpa-javatime</artifactId>
<version>0.2</version>
</dependency>
有关如何在项目页面使用的更多信息。
谢谢。