我的Bug日常之 Caused by: java.lang.IllegalStateException: No typehandler found for property transfer_time

今天在编写后端接口遇到了这样的bug,错误提示如下:

我的Bug日常之 Caused by: java.lang.IllegalStateException: No typehandler found for property transfer_time_第1张图片

关键信息:

Caused by: java.lang.IllegalStateException: No typehandler found for property transfer_time

 

然后找了一圈,三个地方:

1)映射文件中resultMap的result:

2)实体类:

3) sql语句里:

 我的Bug日常之 Caused by: java.lang.IllegalStateException: No typehandler found for property transfer_time_第2张图片

发现都没问题.........

问题解决:

最后发现是这里导错了:

 

改为如下即可

import java.sql.Timestamp;

问题解决!

成功运行:

 

我的Bug日常之 Caused by: java.lang.IllegalStateException: No typehandler found for property transfer_time_第3张图片

你可能感兴趣的:(后端,java,hadoop,hdfs,大数据)