我是靠谱客的博主 生动滑板,最近开发中收集的这篇文章主要介绍Mybatis里Integer数据类型的0值判断问题isPublish去掉为' '的判断,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

我们都知道,java中int的默认值为0,Integer的弄认值为null。只是我们的基本认知。

我们先来看一个mybatis的映射文件,这是一个很简单的修改操作,实体类如下。

映射文件为

 

 <update id="updateExam" parameterType="com.hskj.project.web.domain.WebExam">
        update web_exam
        <set>
            <if test="name != null and name != '' ">name = #{name},</if>
            <if test="examRemark != null and examRemark != '' ">exam_remark = #{examRemark},</if>
            <if test="totalTime != null and totalTime != ''">total_time = #{totalTime},</if>
            <if test="examType != null and examType != '' ">exam_type = #{examType},</if>
            <if test="singleScore != null and singleScore != '' ">single_score = #{singleScore},</if>
            <if test="singleIds != null and singleIds != '' ">single_ids = #{singleIds},</if>
            <if test="isPublish != null and isPublish  != ''">is_publish = #{isPublish},</if>
            update_time = sysdate()
        </set>
        where id = #{id}
    </update>

问题:我修改部分属性时候出现了 

isPublish传值为0的时候,显示修改成功,但是数据库中的数值却没被修改掉。

问题排查:

isPublish为0的时候没有通过不为空的判断也就是isPublish为0和isPublish为' '空串等效。

解决办法:

isPublish去掉为' '的判断

 <update id="updateExam" parameterType="com.hskj.project.web.domain.WebExam">
        update web_exam
        <set>
            <if test="name != null and name != '' ">name = #{name},</if>
            <if test="examRemark != null and examRemark != '' ">exam_remark = #{examRemark},</if>
            <if test="totalTime != null ">total_time = #{totalTime},</if>
            <if test="examType != null and examType != '' ">exam_type = #{examType},</if>
            <if test="singleScore != null ">single_score = #{singleScore},</if>
            <if test="singleIds != null and singleIds != '' ">single_ids = #{singleIds},</if>
            <if test="isPublish != null ">is_publish = #{isPublish},</if>
            update_time = sysdate()
        </set>
        where id = #{id}
    </update>

再次修改,发现修改成功

最后

以上就是生动滑板为你收集整理的Mybatis里Integer数据类型的0值判断问题isPublish去掉为' '的判断的全部内容,希望文章能够帮你解决Mybatis里Integer数据类型的0值判断问题isPublish去掉为' '的判断所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部