JPA-使用转换器坚持@Temporal LocalDate

时间:2019-01-08 17:47:26

标签: hibernate oracle11g java-8 jpa-2.1

无法使用@Temporal的{​​{1}}来编译代码。

实体代码

LocalDate

转换器代码

...
@Temporal(TemporalType.DATE)
private LocalDate creationDate;

public LocalDate getCreationDate() {
    return this.creationDate;
}

public void setCreationDate(LocalDate creationDate) {
    this.creationDate = creationDate;
}
...

persistence.xml

@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();
    }

}

环境

  1. JDK 8
  2. Eclipse JEE-2018-09
  3. hibernate-jpa-2.1-api-1.0.2.Final.jar
  4. hibernate-validator-6.0.14.Final.jar
  5. hibernate-validator-cdi-6.0.14.Final.jar
  6. javax.el-3.0.1-b11.jar
  7. jboss-logging-3.3.2.Final.jar
  8. validation-api-2.0.1.Final.jar
  9. hibernate-java8-5.1.0.Final.jar
  10. hibernate-entitymanager-5.3.7.Final.jar
  11. classmate-1.3.4.jar

Eclipse编译错误(在... <persistence-unit name="HR"> <class>test.Employee</class> <class>test.DateConverter</class> </persistence-unit> ... 注释行中,在实体代码中):

  

“时间”类型的持久字段或属性必须为类型   java.util.Date,java.util.Calendar或java.util.GregorianCalendar

删除@Temporal可以正常编译。 Java8中的日期和时间类别(@Temporal)不需要吗?

请帮助解决问题,谢谢。

1 个答案:

答案 0 :(得分:2)

新的@Temporal类包不需要java.time批注。 java.util.Date之所以需要它,是因为“日期”是对一种“万事通”解决方案的尝试,只会使情况变得更糟。

您也不需要转换器。