org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.ArenaUserdataMapper.selectList
时间: 2023-11-04 13:01:16 浏览: 80
MyBatis绑定错误提示BindingException:Invalid bound statement (not found)的解决方法
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.system.mapper.ArenaUserdataMapper.selectList是一个异常信息,意思是在mybatis中找不到对应的映射语句。这个异常通常发生在mapper接口与mapper配置文件的映射绑定出现问题时。可能的原因是接口与xml文件之间的映射不匹配,或者没有正确配置ResultMap。
阅读全文