mybatis xml 加一个and条件,报参数不匹配?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis xml 加一个and条件,报参数不匹配?相关的知识,希望对你有一定的参考价值。

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMappingproperty='e.sellType', 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 non null for parameter #6 with JdbcType null . 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 #6 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Parameter index out of range (6 > number of parameters, which is 5).

报错说的很明确,参数定义的个数和你用的个数不一致


满意请采纳,如有疑问,请继续追问!

参考技术A 你这个错误是,你的sql接收5个参数,就好比只有5个坑位,但是你来了6个人,没有安排的地方,所以报错了。

Mybatis中Date类型筛选查询报错:invalid comparison: java.time.LocalDateTime and java.lang.String

前言

今天测试接口的时候,有一个关于日期时间的参数,需要根据它筛选数据,然后报错如下

IDEA里面的保错信息

主要就是这一段

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: java.lang.IllegalArgumentException: invalid comparison: java.time.LocalDateTime and java.lang.String
### Cause: java.lang.IllegalArgumentException: invalid comparison: java.time.LocalDateTime and java.lang.String

相关代码如下

<select id="listByStatus"  resultType="com.dmyz.signature.sign.vo.SignVO">
        select
        ds.id,
        ds.company_name,
        ds.title,
        ds.user_id,
        ds.confirm_time,
        ds.remark,
        ds.sign_type,
        ds.participate_type,
        dsi.signator_status,
        dsi.signator_type,
        GROUP_CONCAT(dsi.company_name separator '&amp;')  as otherCompanyName
        from dmyz_sign ds
        left join dmyz_signator dsi
        on ds.id=dsi.sign_id
        <where>
            ds.is_deleted=0
            <if test="null !=sign.userId ">
                and ds.user_id=#sign.userId
            </if>
            <if test="sign.status!=null and sign.status!=''">
                and dsi.signator_status=#sign.status
            </if>
        
            <if test="sign.confirmTime!=null and sign.confirmTime!=''">
                and di.confirm_time=#confirmTime
            </if>
            <if test="sign.signType!=null and sign.signType!=''">
                and di.confirm_time=#sign.signType
            </if>
            <if test="sign.participateType!=null and sign.participateType!=''">
                and di.participate_type=#sign.participateType
            </if>

        </where>

    </select>

分析问题

主要问题在这

<if test="sign.confirmTime!=null and sign.confirmTime!=''">
                and di.confirm_time=#confirmTime
 </if>

这个错误是由于mybatis版本问题导致,这个版本中时间不能与空字符串进行比较。3.3.*版本应该都会有这个问题。

把Date类型和string类型进行比较,就会出现这个错误

这里的confirmTime是date类型的 在进行if判断的时候和’’ 空字符串进行比较,这里就会报这个错误

解决问题

只需要把confirmTime!= ’ ’ 移除就可以了

代码如下

  <if test="sign.confirmTime!=null ">
                 and di.confirm_time=#sign.confirmTime
    </if>

再次运行即可解决问题

扩展

日期的比较可以使用date方法:

<if test="startTime != null">
    and date(a.start_time) <![CDATA[>=]]>date(#startTime,jdbcType=TIMESTAMP)
</if>
<if test="endTime != null ">
    and  date(a.end_time ) <![CDATA[<=]]> date(#endTime,jdbcType=TIMESTAMP)
</if>

以上是关于mybatis xml 加一个and条件,报参数不匹配?的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis单个参数报错: There is no getter for property named

MyBatis 动态sql详解

Mybatis报无效的关系运算符异常

java代码中组装where条件然后拼接到mybatis xml中的sql后面

项目报错:Mybatis无效绑定

Java框架篇---Mybatis 入门