mybatis查询传递Integer类型参数报错
使用mybatis查询数据库,在传递Integer类型参数时,遇到下面的错误:
Servlet.service() for servlet [spring] in context with path /] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘abc’ in ‘class java.lang.Integer’]
解决方法有两种:
一是将参数名称 “abc” 替换为"_parameter"。
二是在接口中定义方法时添加标注@Param(“abc”)
- 本文链接:https://itcao.com/2014/04051350/
- 版权声明:本站所有文章除特别声明外,均可转载,转载请注明出处!