本篇博客主要记录尚融宝项目的mybatis-plus分页插件学习过程中遇到的报错解决。
报错信息如下
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'age' not found. Available parameters are [arg1, arg0, param1, param2]
改之前
IPageselectPageByAge(Page> page,Integer age);
解决方案-改之后
IPageselectPageByAge(@Param("pageParam") Page> page, @Param("age") Integer age);


![Parameter ‘age‘ not found. Available parameters are [arg1, arg0, param1, param2]报错解决 Parameter ‘age‘ not found. Available parameters are [arg1, arg0, param1, param2]报错解决](http://www.mshxw.com/aiimages/31/859966.png)
