mapper接口与mapper.xml文件之间的字段映射异常解决方案

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘accountNo’ not found

在mapper接口对应的方法中加入@Param("")注解,例如:

User select (@Param(“userId”) int userId);

原文链接:https://blog.csdn.net/qq_40910541/article/details/108420953

猜你喜欢

转载自blog.csdn.net/weixin_44821114/article/details/132443132