标签:解决 null code class mapper tween test div map
整了半天终于找到问题所在:在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
标签:解决 null code class mapper tween test div map
原文地址:https://www.cnblogs.com/yjry-th/p/10948964.html