Caused by: org.apache.ibatis.binding.BindingException: Parameter ‘bulletinBoard‘ not found.

Caused by: org.apache.ibatis.binding.BindingException: Parameter ‘bulletinBoard‘ not found.,第1张

Caused by: org.apache.ibatis.binding.BindingException: Parameter ‘bulletinBoard‘ not found.

Caused by: org.apache.ibatis.binding.BindingException: Parameter ‘bulletinBoard’ not found.
出现这个问题是当在mybatis框架中使用的查询语句中包含多个参数
解决办法:为方法中的参数加上注解指定参数加入

List findAll(@Param(“bulletinBoard”) BulletinBoard bulletinBoard, @Param(“begin”)Integer begin, @Param(“pageSize”)Integer pageSize);
加入后还报错,查看是否是param那里引入错误,我就是引入错误,找了好久!!!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5590510.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存