Mybatis if test 中int判断非空的坑

时间:2021-08-14 16:32:20

Mybatis 中,alarmType 是int类型。如果alarmType 为0的话,条件判断返回结果为false,其它值的话,返回true。

 <if test="alarmType != null and alarmType != ''">
    alarm_type=#{alarmType},
 </if>

其实对于条件判断 alarmType 如果为0,条件判断结果为true

 <if test="alarmType == ''">

其实如果alarmType 是int类型的话,不用进行非空判断。