报错说明1:
org.apache.ibatis.binding.BindingException: Type interface com.jt.mapper.DemoUserMapper is not known to the MapperRegistry.
解决方案:检查.xml映射文件中namespace的值,是否与mapper层中的接口一致
报错说明2:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jt.mapper.DemoUserMapper.findAll
解决方案:检查.xml映射文件中id的值,是否与mapper层中的接口的方法名一致
报错说明3:
org.apache.ibatis.exceptions.PersistenceException:
Cause: java.lang.ClassNotFoundException: Cannot find class: com.jt.pojo.DemoUserp
解决方案:检查.xml映射文件中resultType的值,是否与实体对象路径一致
报错说明4:
org.apache.ibatis.exceptions.PersistenceException:
Cause: java.io.IOException: Could not find resource mybatis\mappers\DemoUserMapperh.xml
解决方案:检查mybatis核心配置文件中加载映射文件的路径是否正确
报错说明5:
org.apache.ibatis.reflection.ReflectionException: There is no getter for property named '18' in 'class com.jt.pojo.DemoUser'
解决方案:如下途中18改成age
绑定异常:
- 检查xml映射文件中的namespace
- 检查xml映射文件中Sql的ID
3.检查YML文件中xml映射文件的导入
检查YML文件是否定格,是否有层级缩进问题
数据库链接异常:
检查数据库链接地址/用户名/密码
报错说明:
org.apache.ibatis.binding.BindingException: Mapper method 'com.jt.mapper.UserMapper.findTotal attempted to return null from a method with a primitive return type (long).
解决方案:见下图
报错说明:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jt.mapper.ItemMapper.selectPage
解决方案:见下图