MyBatis错误之nested exception is org.apache.ibatis.type.TypeException

今天在调试项目中的某个功能时发现代码报错:

nested exception is org.apache.ibatis.type.TypeException: 
Could not set parameters for mapping: ParameterMapping{property='ACTION_NM', mode=IN, javaType=class java.lang.Object, jdbcType=NVARCHAR, numericScale=null, resultMapId='null', jdbcTypeName='null', expression='null'}.
 Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #4 with JdbcType NVARCHAR . Try setting a different JdbcType for this parameter or a different configuration property. 
 Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #4 with JdbcType NVARCHAR . Try setting a different JdbcType for this parameter or a different configuration property. 
 Cause: com.microsoft.sqlserver.jdbc.SQLServerException: The index 4 is out of range.

仔细查看Mapper文件后发现SQL中有如下语句:

<if test="DOCID != null and DOCID !=''"> 
       		AND (FH.DOCID = #{DOCID,jdbcType=DECIMAL}
       		OR FH.O_DOCID = #{DOCID,jdbcType=DECIMAL} )
       		--OR (FH.POLICY_NO in (select distinct POLICY_NO from FS_BIS_DOCUMENT where documentid =#{DOCID,jdbcType=DECIMAL}) and FH.DOCID is null)
      	</if> 

才发现同事在粘贴SQL时将SQL Server中的注释粘贴过来了,造成了此项错误。
注意:在MyBatis中的注释格式是如下:

<if test="DOCID != null and DOCID !=''"> 
       		AND (FH.DOCID = #{DOCID,jdbcType=DECIMAL}
       		OR FH.O_DOCID = #{DOCID,jdbcType=DECIMAL} )
       		<!-- OR (FH.POLICY_NO in (select distinct POLICY_NO from FS_BIS_DOCUMENT where documentid =#{DOCID,jdbcType=DECIMAL}) and FH.DOCID is null) -->
      	</if> 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值