Mybatis传入Integer=0时遇到的坑
`SELECT COALESCE(CONCAT(end_percent,'%'),'0%')AS schedules,create_time
FROM r_read_history
<where>
user_id=#{user_id} AND book_id=#{book_id}
<if test="history_type !=null and history_type !=''">
and history_type = #{history_type}
</if>
</where>
ORDER BY update_time desc`
当传入history_type为0时,控制台打印的sql并没有带入这个参数,可知判断条件不成立。
解决办法:
1、删除 and history_type !=‘’ 后条件成立
2、参数换成String类型=‘0’就可以了
推测Integer=0时,mybatis会自动处理使得参数==‘’空字符串
这提醒了我,当Integer类型参数传入后台时,只保留**!=null**这个条件吗,以免造成不必要的bug