org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.demo.demos.web.Mapper.StudentMapper.updateById
时间: 2023-08-25 14:11:06 浏览: 113
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
这个异常通常表示在 MyBatis 中找不到指定的映射语句。在这种情况下,它指出找不到名为 "com.example.demo.demos.web.Mapper.StudentMapper.updateById" 的映射语句。
要解决这个问题,你可以按照以下步骤检查和调试:
1. 确保在 MyBatis 的配置文件中正确配置了 `StudentMapper` 接口的命名空间(namespace)。
2. 验证在 `StudentMapper.xml` 文件中是否存在与 `updateById` 对应的 `<update>` 标签。
3. 检查 `updateById` 的命名是否正确,包括大小写和拼写。
阅读全文