Spring + Mybatis 异常

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

Spring + Mybatis 异常_第1张图片

三种情况:

  • 1.
    mapper的namespace写的不对!注意修改;

  • 2.UserDao的方法在UserDao.xml中没有,然后执行UserDao的方法会报此异常;

    1. UserDao的方法返回值是List,而select元素没有正确配置ResultMap,或者只配置ResultType;
  • 4.如果你确认没有以上问题,请任意修改下对应的xml文件,比如删除一个空行,保存.问题解决...


HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'diffRecordModel' in 'class com.qunar.fresh2017.exam3.model.DiffRecordModel'

Spring + Mybatis 异常_第2张图片

Mybatis进行数据库操作是传入一个model给mapper报此错误,解决方法:

  • 1、将 参数名称 "contentSize" 替换为"_parameter"
    结果正常。
  • 2、在接口中定义方法时 增加 @Param 标记

你可能感兴趣的:(Spring + Mybatis 异常)