AI智能
改变未来

点击跟进记录 查询这个学生的跟进信息出现的错误Parameter netStuId not found. Available parameters are [ arg0,param1]

error: “Internal Server Error”
“内部服务器错误”
message: “nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘netStuId’ not found. Available parameters are [arg0, netFollow, param1, param2]”
嵌套异常为org.apache.ibati.binding.BindingException:未找到参数‘netStuId’。可选参数为[arg0,netFollow,param1,param2]“

把dao接口的表名改成了数据库列名,出现这个错误
2020-05-21 11:08:09.489 WARN 15336 — [nio-8080-exec-5] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type ‘java.lang.String’ to required type ‘java.lang.Integer’; nested exception is java.lang.NumberFormatException: For input string: “undefined”]

发现变了错误之后,我又改回来了
但还是报这个错

Request URL: http://localhost:8080/xm/netfollow/pages?netStuId=undefined&page=1&limit=10

按钮传参时的id写错了,改完之后就成功了然后报错

Parameter ‘netStuId’ not found. Available parameters are [netfollow, arg0, param1, param2]\”

把这个
IPage selectNetFollowsByPage(Page page, @Param(\”netfollow \”) Netfollow netfollow );
改成
IPage selectNetFollowsByPage(Page page, @Param(“netStuId”) Integer netStuId);
问题就解决了

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 点击跟进记录 查询这个学生的跟进信息出现的错误Parameter netStuId not found. Available parameters are [ arg0,param1]