海滨擎蟹

Mybatis 报错 invalid comparison: java.util.Date and java.lang.String

Mapper 中日期变量不能与字符串比较,错误写法:

<if test="startTime != null and startTime != ''">
...
</if>

正确写法(去掉空字符串判断):

<if test="startTime != null">
...
</if>

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »