org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.soft.kepper.mapper.DeviceMapper.findAll
时间: 2023-11-07 15:02:58 浏览: 54
使用mybatis-plus报错Invalid bound statement (not found)错误
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.soft.kepper.mapper.DeviceMapper.findAll 是因为在MyBatis-Plus持久化框架使用中,Mapper.java与Mapper.xml绑定失败导致的。这个错误提示说明找不到与com.soft.kepper.mapper.DeviceMapper.findAll方法相对应的Mapper接口中的SQL语句。请检查是否在Mapper.xml文件中正确配置了与该方法相对应的SQL语句。
阅读全文