org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='__frch_item_0.price', 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 #7 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: Invalid column type: 1111
时间: 2024-03-10 22:15:59 浏览: 565
spring mybatis 3.x 使用图文
根据你所提供的错误信息,看起来是在使用 MyBatis 进行数据库操作时出现了问题。更具体地说,是在设置参数时出现了错误。可能是由于参数类型不匹配或者 jdbcType 配置不正确导致的。建议你检查一下参数类型和 jdbcType 是否正确设置,并尝试更改 jdbcTypeForNull 配置属性,看看是否有帮助。如果还有疑问,请提供更多信息以便我能够更好地帮助你解决问题。
阅读全文