'AttributeConverter和explicit Type不能使用LocalDateTime应用于同一属性'

时间:2016-01-13 13:10:42

标签: java spring hibernate jpa jsr310

我正在使用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;

1 个答案:

答案 0 :(得分:0)

请按照消息说明并删除自定义注释,然后它(大概)会选择可能被定义为&#34; autoApply&#34;

的JPA 2.1 AttributeConverter