我收到以下异常:
org.springframework.dao.InvalidDataAccessApiUsageException: Parameter value did not match expected type. [java.util.Date (n/a)];
nested exception is java.lang.IllegalArgumentException: Parameter value did not match expected type [java.util.Date (n/a)]
这是我的存储库中的查询方法:
@Query("SELECT COUNT(entity) FROM Person entity WHERE trunc(entity.date) BETWEEN :startTime AND :endTime")
int getPersonBetweenDates(@Param("startTime") DateTime var1, @Param("endTime") DateTime var2);
我在组件中的实现:
int totalPersons = personRepo.getPersonBetweenDates(new DateTime().withTimeAtStartOfDay(), DateTime.now());
为什么我收到此错误?似乎实现中的两个 DateTime 参数与我的方法中的参数匹配?
答案 0 :(得分:4)
DateTime
不要在方法参数中使用joda的java.util.Date
,而是使用@Query("SELECT COUNT(entity) FROM Person entity WHERE trunc(entity.date) BETWEEN :startTime AND :endTime")
int getPersonBetweenDates(@Param("startTime") Date var1, @Param("endTime") Date var2);
,如下所示:
DateTime
然后在您的客户端代码中,如果您有一些toDate
个实例,则可以使用DateTime
方法将Date
转换为personRepo.getPersonBetweenDates(new DateTime().withTimeAtStartOfDay().toDate(), DateTime.now().toDate());
:
{{1}}