其他分享
首页 > 其他分享> > 春季:InvalidDataAccessApiUsageException?

春季:InvalidDataAccessApiUsageException?

作者:互联网

我收到以下异常:

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参数与我的方法中的参数匹配?

解决方法:

Parameter value did not match expected type. [java.util.Date (n/a)];

不要在方法参数中使用joda的DateTime,而应使用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());

标签:jodatime,oracle11g,spring-data,spring,java
来源: https://codeday.me/bug/20191027/1943492.html