"org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='ew.paramNameValuePairs.MPGENVAL3', mode=IN, javaType=class java.lang.Object, jdbcType=null, numericScale=null, resultMapId='null', jdbcTypeName='null', expression='null'}. Cause: org.apache.ibatis.type.TypeException: Error setting null for parameter #3 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 无效的列类型: 1111"
时间: 2023-05-17 17:03:14 浏览: 154
mybatis数据类型错误及解决方法
这是一个MyBatis的异常,其中嵌套了一个TypeException异常。错误原因是在参数映射中设置参数时出现了问题,具体是在设置参数ew.paramNameValuePairs.MPGENVAL3时出现了错误。可能的原因是在设置参数时出现了空值(null)。
阅读全文