我有一个具有 DateTime 属性的实体与休眠状态保持一致
@Type(type = "org.jadira.usertype.dateandtime.joda.PersistentDateTime")
@Column(name = "EFF_DT")
protected DateTime effDt;
这一切都适用于常规 spring-data-jpa 生成的查询。
我正在尝试添加自定义本机查询
@Query(value = "SELECT COUNT(*) FROM wsa_circuit_state_history ch WHERE ch.eff_dt between ?1 and ?2", nativeQuery = true)
Integer countEffDateBetween(DateTime start, DateTime end);
我得到的错误是尝试调用它时
java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got BINARY
这是我在将自定义类型映射添加到我的实体之前使用常规 spring-data 查找器遇到的相同错误
@Type(type = "org.jadira.usertype.dateandtime.joda.PersistentDateTime")
如何让 spring-data-jpa/hibernate 使用自定义类型映射将参数映射到本机查询?