Mybatis 报错 invalid comparison: java.util.Date and java.lang.String
Mapper 中日期变量不能与字符串比较,错误写法:
<if test="startTime != null and startTime != ''">
...
</if>
正确写法(去掉空字符串判断):
<if test="startTime != null">
...
</if>
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
Mapper 中日期变量不能与字符串比较,错误写法:
<if test="startTime != null and startTime != ''">
...
</if>
正确写法(去掉空字符串判断):
<if test="startTime != null">
...
</if>
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。