Mybatis无效的列类型: 1111

nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='__frch_item_0.perSource', mode=IN, javaType=class java.lang.String, 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: 无效的列类型: 1111
 

最近老是遇到这种问题,因为 get这个为空的字段时并做后续判断时产生

String areaName = patrolImportData.getAreaName();

不能这么获取,如果后续要做判断时,直接 patrolImportData.getAreaName()  不要用中间变量来接受做判断,这个和mybatis内部的什么东西相关,如果没用到这个就可以正常获取,最近遇到好多。

  • 7
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
MyBatis-Plus中,当传递的查询参数为null时,可能会引发无效类型错误代码1111。这个错误通常在解析参数类型时出现问题。如果参数是Map类型或Java Object类型,并且属性的类型不一致,例如某些属性是String类型,而其他属性是Integer类型,那么MyBatis在解析时可能无法正确识别类型,从而导致错误。为了解决这个问题,可以在MyBatis的参数解析过程中进行特殊处理。可以通过加入如下代码进行特殊判断处理: ```xml <if test="fieldValue == null"> #{fieldValue, jdbcType = VARCHAR} </if> <if test="fieldValue != null"> #{fieldValue} </if> ``` 这样,当传入的参数值为null时,会将其转换为VARCHAR类型。这样就可以避免无效类型错误。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [Oracle 结合Mybatis-plus 查询报错:无效类型: 1111](https://blog.csdn.net/qq_24006731/article/details/88538810)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [Mybatis - 无效类型: 1111](https://blog.csdn.net/Dream_Weave/article/details/124496550)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值