Mybatis找不到传入的offset参数
项目场景:
List
对应mapper:
执行:
departmentService.queryDepartmentLimit(0,5);
问题描述:
原因分析:
原因一:
可能没写ParameterType="_int",但一般基本类型可以不写,
解决方案:
在参数前加上@Param注解:
List
项目场景:
List
对应mapper:
执行:
departmentService.queryDepartmentLimit(0,5);
问题描述:
原因分析:
原因一:
可能没写ParameterType="_int",但一般基本类型可以不写,
解决方案:
在参数前加上@Param注解:
List
共有 0 条评论