其他分享
首页 > 其他分享> > Mybatis: Cannot determine value type from string xxx

Mybatis: Cannot determine value type from string xxx

作者:互联网

今天在使用Mybatis时遇到了Cannot determine value type from string xxx

原因是数据库中的字段没有和实体类对应。

解决方法有两种:

1.加一个无参构造器。

2.有参构造器的参数的个数,类型应该和实体类一一对应。我这里的原因就是实体类少了一个id属性


我们添加上id属性就好了!

标签:实体类,string,xxx,value,Cannot,determine,Mybatis,id
来源: https://www.cnblogs.com/wangstudyblog/p/15371163.html