org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException:
时间: 2023-09-26 16:05:57 浏览: 200
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException 是MyBatis在执行SQL时发生的异常。其中,BindingException表示绑定参数时出现了问题。异常信息中还提到了Parameter 'limit' not found. Available parameters are [arg2, offset, param3, userId, param1, param2],这意味着在SQL语句中找不到名为'limit'的参数。根据引用中的错误信息,可以得出这个问题是在调用selectDiscussPostsById方法时出现的。
解决这个问题的方法是在方法参数中使用@Param注解,将函数参数与Mapper.xml文件中的参数关联起来。具体来说,您需要在DiscussPostMapper接口的selectDiscussPostsById方法的参数中添加@Param注解,并为每个参数指定一个别名,如userId、offset和limit。这样,MyBatis就能正确地绑定参数了。参考引用中的代码示例:
@Mapper
public interface DiscussPostMapper {
List<DiscussPost> selectDiscussPostsById(@Param("userId") int userId, @Param("offset") int offset, @Param("limit") int limit);
int selectDiscussPostRows(@Param("userId") int userId);
}
通过这样的修改,您应该能够成功解决org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException的问题。希望对您有帮助!
阅读全文