MyBatis报错:Cannot determine value type from string....

org. springframework. web. util. NestedServletExcepti on:Request processing f ailed; nested exception
is org.springframework. dao. DataIntegrityViolationExceptionError attempting to Cannot determine. value tvpe from string ” 2019-9-25 05:11: 48’nested ex ception is :java. sql. SQLDat aException: Cannot determine value tvpe from string ’2019-9-25 05: 11: 48

 新建查询后出现了这个错误,经百度后发现是实体类接收数据库数据类型不匹配导致的。

日期格式在经过DATE_FORMAT之后

DATE_FORMAT(update_time,'%Y-%c-%d %h:%i:%s') as 'update_time',

使用Date类型属性接收报错,需要使用String类型的属性接收。

你可能感兴趣的:(MyBatis报错:Cannot determine value type from string....)