org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.Alen.dao.UserMapper.selectLis
时间: 2023-11-05 15:05:12 浏览: 51
MyBatis绑定错误提示BindingException:Invalid bound statement (not found)的解决方法
该异常是由于在MyBatis-Plus持久化框架中,Mapper.java与Mapper.xml的绑定失败导致的。当业务调用流转到Mapper.xml时,找不到相应的绑定关系,就会报错。具体来说,对应的语句 "com.Alen.dao.UserMapper.selectLis" 在Mapper.xml中没有找到对应的定义,导致绑定失败。
解决该问题的方法是检查Mapper.xml文件中是否正确定义了对应的语句。确保语句的ID与Mapper.java文件中的方法名一致,并确认命名空间也正确。另外,还要检查Mapper.xml文件的位置是否正确配置在MyBatis配置文件中。
阅读全文