使用mybatis出现异常:invalid comparison: java.time.LocalDateTime and java.lang.String

Posted yjry-th

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用mybatis出现异常:invalid comparison: java.time.LocalDateTime and java.lang.String相关的知识,希望对你有一定的参考价值。

整了半天终于找到问题所在:在mapper文件中,对该参数进行了和字符串的对比,如下:

<if test="startTime != null and startTime != ‘‘ and endTime != null and endTime != ‘‘">
    AND createTime BETWEEN #{startTime} AND #{endTime}
</if>

 

修改为以下格式解决问题:

<if test="startTime != null and endTime != null">
    AND createTime BETWEEN #{startTime} AND #{endTime}
</if>

 

一定要注意参数对比时类型是否相同。

以上是关于使用mybatis出现异常:invalid comparison: java.time.LocalDateTime and java.lang.String的主要内容,如果未能解决你的问题,请参考以下文章

mybatis 异常处理:Invalid bound statement (not found)

mybatis 异常处理:Invalid bound statement (not found)

mybatis 异常处理:Invalid bound statement (not found)

mybatis绑定错误-- Invalid bound statement (not found)

Mybatis 异常记录: Invalid bound statement (not found)

mybatis报错:BindingException: Invalid bound statement (not found)