JPA - 使用转换器持久化@Temporal LocalDate
JPA - Persist @Temporal LocalDate using a converter
无法使用 @Temporal
为 LocalDate
编译代码。
实体代码
...
@Temporal(TemporalType.DATE)
private LocalDate creationDate;
public LocalDate getCreationDate() {
return this.creationDate;
}
public void setCreationDate(LocalDate creationDate) {
this.creationDate = creationDate;
}
...
转换器代码
@Converter(autoApply=true)
public class DateConverter implements AttributeConverter<LocalDate, Date> {
@Override
public Date convertToDatabaseColumn(LocalDate localDate) {
return (localDate == null) ? null : Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
}
@Override
public LocalDate convertToEntityAttribute(Date date) {
return (date==null) ? null : Instant.ofEpochMilli(date.getTime()).atZone(ZoneId.systemDefault()).toLocalDate();
}
}
persistence.xml
...
<persistence-unit name="HR">
<class>test.Employee</class>
<class>test.DateConverter</class>
</persistence-unit>
...
环境
- JDK 8
- Eclipse JEE - 2018-09
- hibernate-jpa-2.1-api-1.0.2.Final.jar
- hibernate-validator-6.0.14.Final.jar
- hibernate-validator-cdi-6.0.14.Final.jar
- javax.el-3.0.1-b11.jar
- jboss-logging-3.3.2.Final.jar
- 验证-api-2.0.1.Final.jar
- 休眠-java8-5.1.0.Final.jar
- hibernate-entitymanager-5.3.7.Final.jar
- 同学-1.3.4.jar
Eclipse 编译错误(实体代码中的@Temporal
注释行):
The persistent field or property for a Temporal type must be of type
java.util.Date, java.util.Calendar or java.util.GregorianCalendar
删除 @Temporal
编译正常。 Java8 中的日期和时间 类(java.time
) 不是必需的吗?
请帮忙解决问题,谢谢
classes 的新 java.time
包不需要 @Temporal
注释。 java.util.Date
需要它,因为 "Date" 是对一个 class 放之四海而皆准的解决方案的尝试,这只会让事情变得更糟。
你也不需要转换器。
无法使用 @Temporal
为 LocalDate
编译代码。
实体代码
...
@Temporal(TemporalType.DATE)
private LocalDate creationDate;
public LocalDate getCreationDate() {
return this.creationDate;
}
public void setCreationDate(LocalDate creationDate) {
this.creationDate = creationDate;
}
...
转换器代码
@Converter(autoApply=true)
public class DateConverter implements AttributeConverter<LocalDate, Date> {
@Override
public Date convertToDatabaseColumn(LocalDate localDate) {
return (localDate == null) ? null : Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
}
@Override
public LocalDate convertToEntityAttribute(Date date) {
return (date==null) ? null : Instant.ofEpochMilli(date.getTime()).atZone(ZoneId.systemDefault()).toLocalDate();
}
}
persistence.xml
...
<persistence-unit name="HR">
<class>test.Employee</class>
<class>test.DateConverter</class>
</persistence-unit>
...
环境
- JDK 8
- Eclipse JEE - 2018-09
- hibernate-jpa-2.1-api-1.0.2.Final.jar
- hibernate-validator-6.0.14.Final.jar
- hibernate-validator-cdi-6.0.14.Final.jar
- javax.el-3.0.1-b11.jar
- jboss-logging-3.3.2.Final.jar
- 验证-api-2.0.1.Final.jar
- 休眠-java8-5.1.0.Final.jar
- hibernate-entitymanager-5.3.7.Final.jar
- 同学-1.3.4.jar
Eclipse 编译错误(实体代码中的@Temporal
注释行):
The persistent field or property for a Temporal type must be of type java.util.Date, java.util.Calendar or java.util.GregorianCalendar
删除 @Temporal
编译正常。 Java8 中的日期和时间 类(java.time
) 不是必需的吗?
请帮忙解决问题,谢谢
classes 的新 java.time
包不需要 @Temporal
注释。 java.util.Date
需要它,因为 "Date" 是对一个 class 放之四海而皆准的解决方案的尝试,这只会让事情变得更糟。
你也不需要转换器。