nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping

末鹿安然 提交于 2020-01-15 23:08:02

今天mybatis报了个错误

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property=‘InfoId’, mode=IN, javaType=class java.lang.Long, jdbcType=null, numericScale=null, resultMapId=‘null’, jdbcTypeName=‘null’, expression=‘null’}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long

好像是说转型错误。

把mapper.java

mapper.xml

和实体查了一下。

最后找到原因

mapper.java里入参为int型

XXXDTO getXXXInfoId(int xxxInfoId);
到mybatis的mapper.xml入参定义成了long,导致了上面的错误。

把long改成int型,问题解决。
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!