Mybits中传入Date类型 invalid comparison: java.util.Date and java.lang.String

Mybits中传入Date类型报错

Caused by: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String
当我们使用Date类型作为参数传入,Mybatis if验证对于Date类型来说,不能验证是否是空字符串( ’ ’ ),只能验证是否为空(null),下面mapper中 newTime是Date类型。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="qlj.bids.dao.BidsMapper">
    <!-- 查询除大文本以外的数据  -->
  <select id="selectBidsList" resultType="qlj.bids.model.Bids"> 
    select title,newTime,id
    from bids
    <where>
        <if test="bids != null">
            <if test="bids.title != null and bids.title !=  '' ">
                    title like  CONCAT("%",#{bids.title},"%") 
            </if>
            <if test="bids.newTime!= null ">
                    AND newTime = #{bids.newTime} 
            </if>
  </select>
</mapper>

猜你喜欢

转载自blog.csdn.net/Qin_HongKun/article/details/80625339