我正在使用ZonedDateTime当前使用Spring Boot 1.3.1与JPA和Hibernate使用jadira:
<lf>
<pos>
<pan>28</pan>
<tilt>44</tilt>
</pos>
<col>#ffffff</col>
</lf>
这很好用。但是,我现在想使用LocalDateTime。我将代码更改为:
@Type(type = "org.jadira.usertype.dateandtime.threeten.PersistentZonedDateTime")
private ZonedDateTime startTime;
通过这样做,我得到以下异常:
@Type(type = "org.jadira.usertype.dateandtime.threeten.PersistentLocalDateTime")
private LocalDateTime startTime;
答案 0 :(得分:0)
请按照消息说明并删除自定义注释,然后它(大概)会选择可能被定义为&#34; autoApply&#34;
的JPA 2.1 AttributeConverter