今天使用mybatis时候出现一个报错:
com.mysql.cj.exceptions.DataConversionException: Cannot determine value type from string 'C00001'
网上找的资料说是字段,或者属性没对上,又或者是缺少无参构造器
最后检查一遍发现是有个字段的名字跟实体类的对不上,还有个字段的属性写错了,本来是string的,结果写成Integer了,修改后就可以了。
今天使用mybatis时候出现一个报错:
com.mysql.cj.exceptions.DataConversionException: Cannot determine value type from string 'C00001'
网上找的资料说是字段,或者属性没对上,又或者是缺少无参构造器
最后检查一遍发现是有个字段的名字跟实体类的对不上,还有个字段的属性写错了,本来是string的,结果写成Integer了,修改后就可以了。