rg.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.mybatisplus.mapper.UserMapper.selectList
时间: 2023-11-08 17:00:38 浏览: 91
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
引用和提到了一个错误信息:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.mybatisplus.mapper.UserMapper.selectList。这个错误信息说明了绑定的SQL语句无效,找不到对应的映射语句com.example.mybatisplus.mapper.UserMapper.selectList。
针对这个问题,可以进行以下分析和解决:
1. 检查SQL映射文件:确认com.example.mybatisplus.mapper.UserMapper.xml文件中是否存在名为selectList的映射语句,并检查语句是否正确。
2. 检查映射接口:确认com.example.mybatisplus.mapper.UserMapper接口中是否存在名为selectList的方法,并检查方法的命名是否与映射文件中的语句对应。
3. 检查Mapper扫描路径配置:确认MyBatis配置文件中是否正确配置了com.example.mybatisplus.mapper包的扫描路径,以确保Mapper接口能够被正确扫描到。
阅读全文