xml中Integer判空

前端之家收集整理的这篇文章主要介绍了xml中Integer判空前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一:问题的由来

业务需求在设置最小数量(minCount)时用到了Integer类型,发现设置为0时不能入库

二:解决问题过程

直接在*Mapper.xml中找到对应minCount判断语句

原写法如下:

<if test="minCount != null" and minCount != ''>

,min_count = #{minCount}

</if>

三:解决方法

去掉and minCount != ''

<if test="minCount != null"</if>

猜你在找的XML相关文章