我正在尝试使用AttributeConverter使用Hibernate 4.3.0将新的Java 8 ZonedDateTime值存储在MySQL数据库(DATETIME字段)中。
当我尝试执行更新时,我收到此错误:
...Data truncation: Incorrect datetime value: '\xAC\xED\x00\x05sr\x00\x0Djava.time.Ser\x95]\x84\xBA\x1B"H\xB2\x0C\x00\x00xpw\x0D\x06\x00\x00\x07\xE0\x02\x11\x0B&\xEE\xE0\x08\x' for column...
我已经读过许多SO答案,说使用转换器方法,所以我写了一个:
import javax.persistence.AttributeConverter;
import javax.persistence.Converter;
import java.sql.Date;
import java.time.LocalDate;
import java.time.ZonedDateTime;
@Converter(autoApply = true)
public class ZonedDateTimeConverter implements AttributeConverter<ZonedDateTime, Date> {
@Override
public Date convertToDatabaseColumn(ZonedDateTime zonedDateTime) {
if (zonedDateTime == null) return null;
return java.sql.Date.valueOf(zonedDateTime.toLocalDate());
}
@Override
public ZonedDateTime convertToEntityAttribute(Date date) {
if (date == null) return null;
LocalDate localDate = date.toLocalDate();
return ZonedDateTime.from(localDate);
}
}
......但它永远不会被召唤。
我甚至已将jpaProperties.put("hibernate.archive.autodetection", "class, hbm");
添加到我的jpaProperties中,但没有运气。 ZonedDateTimeConverter类与我的实体位于同一个包中,因此应该扫描它。
我在这里缺少什么?
答案 0 :(得分:7)
阅读JPA 2.1规范:
&#34;支持所有基本类型的转换,但以下情况除外:Id属性(包括 嵌入式ID和派生标识的属性),版本属性,关系属性和 属性显式地注释为枚举或时间或在XML描述符中指定为。&#34;
您的ZonedDateTime字段是否有可能在您的实体中使用@Id或@Temporal进行注释?
答案 1 :(得分:0)