Mybatis查询时报 Bad format for Time '454:54:54' in column 6 异常

报     Bad format for Time '454:54:54' in column 6   

解决方案:1. 查询实体类和.xml数据是否相对应

2. 查询sql是否正确

3. 查看表的设计,是否为time,一般设置为“text”的,但是设置成“time”形式,实体类却是String类型,在查询时会报错

原文地址:https://www.cnblogs.com/lengxiaofeng/p/7123205.html