Cause: java.sql.SQLException: 无效的列类型: 1111

问题:使用MyBatis-plus+Orecle的一次查询引发的报错
完整错误

There was an unexpected error (type=Internal Server Error, status=500).
nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='cardId', 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 #1 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 无效的列类型: 1111
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='cardId', 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 #1 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 无效的列类型: 1111

前提
这个是由于Orecle 数据库查询的时候参数是null (注意不是"",这个可以通过)
场景:
1:使用mybati-plus查询会出现报错
2:xml里也会报错

处理方法:
1:第一种情况直接加一个null的判断
2:第二种情况:在xml里加上对应的数据类型:如下,这里我的是字符串,加:jdbcType=VARCHAR


你可能感兴趣的:(Mybatis-plus,orecle,java,oracle,Mybatis-plus)