一、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 包即可