本文主要是介绍mybatis-plus Invalid bound statement (not found):xxxMapper.selectById,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误背景
在使用mybatis api根据id集合查询数据时出现错误Invalid bound statement (not found):xxxMapper.selectById
super.listByIds(userIdList);
问题出现的原因
在定义实体中未加@TableId注解
解决办法
在对应的实体中添加@TableId注解
issues
这篇关于mybatis-plus Invalid bound statement (not found):xxxMapper.selectById的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!