存入数据库中 报错 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.demo.mapper.UserMapper.insert
时间: 2023-10-17 17:33:40 浏览: 229
MyBatis绑定错误提示BindingException:Invalid bound statement (not found)的解决方法
这个报错通常是因为 MyBatis 没有找到对应的 SQL 语句。请检查你的 `UserMapper.xml` 文件中是否有名为 `insert` 的 SQL 语句,并且检查你的 Mapper 接口中是否有对应的方法名为 `insert`。如果都存在,请检查 XML 文件中的命名空间和接口的包路径是否匹配。如果还是无法解决问题,请将相关代码和报错信息提供给我,我会尽力帮助你解决问题。
阅读全文