报错的代码 @Update("update staff_info set ApplyState = #{applyState} where Id = #{userId}") int handleStaff( Integer userId, Integer applyState); 修改后的代码 @Update("update staff_info set ApplyState = #{applyState} where Id = #{userId}") int ha…
我这里的报错信息显示: org.apache.ibatis.binding.BindingException: Parameter 'reqUsername' not found. Available parameters are [0, 1, param1, param2] 原因:当只有一个参数时,Mapper中可以不使用@Param,但是当有多个参数的时候,要使用@Param. 原来的代码: @Select("select * from tz_user where " + Glob…
解决mybatis foreach 错误: Parameter '__frch_item_0' not found 在遍历对象的属性(是ArrayList对象)时报错: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter '__frch_item_0' not found. Available parameters…