注意:根据实际情况进行copy
如果项目有is_deleted 需要进行判断
我的原始需求是修改主表时需要同时修改与主表关联的附表,但是后来我考虑到可能会出现修改主表后新增或删除了1条附表信息,附表信息变多或变少的情况,所以我没有采用批量修改来实现需求。最终的实现步骤是先批量删除了所有相关的附表信息,再调用一次批量新增实现需求。
/** ?* 批量新增 ?* @param cleanRulesSteps 清洗规则步骤集合 ?* @return Integer ?*/
Integer insertCleanRulesStep(List<DpCleanRulesStep> cleanRulesSteps);
<!-- 批量插入 --> <insert id="insertCleanRulesStep" parameterType="java.util.List"> ? ? insert into dp_clean_rules_step ? ? (rule_id,fun_id,source_param,target_param,rules_value,step_order,func_name,func_code,create_time) ? ? values ? ? <foreach collection="list" item="cleanRulesSteps" index="index" separator=","> ? ? ? ? ( ? ? ? ? #{cleanRulesSteps.ruleId}, ? ? ? ? #{cleanRulesSteps.funId}, ? ? ? ? #{cleanRulesSteps.sourceParam}, ? ? ? ? #{cleanRulesSteps.targetParam}, ? ? ? ? #{cleanRulesSteps.rulesValue}, ? ? ? ? #{cleanRulesSteps.stepOrder}, ? ? ? ? #{cleanRulesSteps.funcName}, ? ? ? ? #{cleanRulesSteps.funcCode}, ? ? ? ? now() ? ? ? ? ) ? ? </foreach> </insert>?
/** ?*批量修改 ?* @param cleanRulesSteps 清洗规则步骤集合 ?* @return Integer ?*/ ?Integer updateRulesSteps(List<DpCleanRulesStep> cleanRulesSteps);?
<!-- 批量修改 --> <update id="updateRulesSteps" parameterType="java.util.List"> ? ? <foreach item="cleanRulesSteps" index="index" collection="list" open="" separator=";" close=""> ? ? ? ? update dp_clean_rules_step ? ? ? ? <set> ? ? ? ? ? ? <if test="cleanRulesSteps.funId !=null "> ? ? ? ? ? ? ? ? fun_id=#{cleanRulesSteps.funId}, ? ? ? ? ? ? </if> ? ? ? ? ? ? <if test="cleanRulesSteps.sourceParam !=null and cleanRulesSteps.sourceParam !=''"> ? ? ? ? ? ? ? ? source_param=#{cleanRulesSteps.sourceParam}, ? ? ? ? ? ? </if> ? ? ? ? ? ? <if test="cleanRulesSteps.targetParam !=null and cleanRulesSteps.targetParam !=''"> ? ? ? ? ? ? ? ? target_param= #{cleanRulesSteps.targetParam}, ? ? ? ? ? ? </if> ? ? ? ? ? ? <if test="cleanRulesSteps.rulesValue !=null and cleanRulesSteps.rulesValue !='' "> ? ? ? ? ? ? ? ? rules_value= #{cleanRulesSteps.rulesValue}, ? ? ? ? ? ? </if> ? ? ? ? ? ? <if test="cleanRulesSteps.stepOrder !=null"> ? ? ? ? ? ? ? ? step_order= #{cleanRulesSteps.stepOrder}, ? ? ? ? ? ? </if> ? ? ? ? ? ? update_time= now() ? ? ? ? </set> ? ? ? ? where id =#{cleanRulesSteps.id} ? ? </foreach> </update>?
批量更新问题之check the manual that corresponds to your MySQL server version for the right sy
解决方案: 连接mysql数据库的配置中加上如下的配置: &allowMultiQueries=true
|