MyBatis常见错误

一、UserMapper.xml找不到:

解决方案 1)https://blog.csdn.net/qq_38825467/article/details/89252154

解决方案 2)mybatis-config.xml 中的 mapper 元素的 resource 属性的值有问题,路径应该从 src (source folder)下开始写(使用 Idea)

解决方案 3)检查mapper.xml 是否带有xml后缀,如果没有也将无法获取其内容

二、Could not resolve type alias 'User':

解决方案 UserMapper.xml 中 select 元素中的 resultType 属性的值应该是全限定类名

三、Type interface main.java.mapper.UserMapper is not known to the MapperRegistry:

解决方案 UserMapper.xml 中的 mapper 元素的 namespace 属性的值应该是全限定类名

四、Client does not support authentication protocol requested by server; consider upgrading MySQL client:

解决方案 将驱动的 jar 替换为与使用的 MySQL 一致的版本

五、Table 'mybatisdb.user' doesn't exist:

解决方案 检查数据库中表的名称是否与 UserMapper.xml 中写的 SQL 语句的表名称一致

六、Error instantiating class main.java.User with invalid types () or values (). Cause: java.lang.NoSuchMethodException: main.java.User.<init>(). Cause:

解决方案 在相应 POJO 中添加一个无参构造方法即可

七、java.lang.NoClassDefFoundError: mapper/userMapper (wrong name: mapper/UserMapper):

解决方案 userMapper.xml 中的 namespace 配置的 UserMapper 不对

八、Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for mapper.UserMapper.getUser:

解决方案 1)https://blog.csdn.net/LarrYFinal/article/details/81836615

                2)使用的是 SqlSession 直接发送 SQL 的方式,则可能是 SQL id 写错,即方法名后没有()

                3)查看 mybatis-config.xml 文件中是否未配置 Mapper 或 Mapper.xml

九、Cause: java.lang.IllegalArgumentException: Mapped Statements collection already contains value for mapper.UserMapper.getUser:

解决方案 注释 UserMapper 中的注解或将相应的 XML 文件取消注册

十、Error creating document instance.  Cause: org.xml.sax.SAXParseException:

解决方案 检查XML文件的头部是否书写一致,Mapper 文件都为 mapper 相关词语;配置文件都为 config 相关词语

十一、Cause: org.xml.sax.SAXParseException; lineNumber: 45; columnNumber: 17; 元素类型为 "configuration" 的内容必须匹配 "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory ?,objectWrapperFactory?,plugins?,environments?,databaseIdProvider?,mappers?)"

解决方案 检查 XML 配置文件的元素顺序是否符合规范,如果存在不符合规范的,调整一下

十二、Cause: org.apache.ibatis.builder.BuilderException: The setting defaultFetchSize is not known.  Make sure you spelled it correctly (case sensitive).

解决方案 检查 XML 配置文件的相应属性值是否在该版本的MyBatis中包含,如果不存在,删除即可,或者找到相对应替换的属性即可

十三、Cannot enable lazy loading because CGLIB is not available. Add CGLIB to your classpath.

解决方案 添加相应的 cglib-nodep jar 包即可

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值