Cannot determine value type from string 问题记录

Cannot determine value type from string 问题记录

线上接口请求报错,报错信息如上,原因是因为在实体类定义类型的时候复制上一行字段,类型用了Integer,而数据库字段类型是varchar,mybatis在数据处理时转字段类型出错,无法将varchar转换成Integer导致。
将字段类型修改成String类型解决问题。
遇到类似报错的童靴,可以检查数据库字段与实体类字段类型是否匹配

你可能感兴趣的:(java,java,后端,java异常)