mybatis遍历Map

9 篇文章 0 订阅
3 篇文章 0 订阅
<insert id="insert" parameterType="com.modular.table.param.CustomDataParam">
        insert into ${param.tableName}
        <foreach collection="param.params.keys" item="key" open="(" close=")"
                 separator=",">
            ${key}
        </foreach>
        values
        <foreach collection="param.params.values" item="value" open="("
                 close=")" separator=",">
            #{value}
        </foreach>
</insert>

<update id="update" parameterType="com.modular.table.param.CustomDataParam">
        update ${param.tableName} set
        <foreach collection="param.params.entrySet()" item="value" index="key"         
                                                                       separator=",">
            ${key} = #{value}
        </foreach>
        where id
        <if test="param.id != null">
            = #{param.id}
        </if>
        <if test="param.id == null">
            in
            <foreach collection="param.ids" item="item" index="index" open="(" close=")" 
                                                                        separator=",">
                #{item}
            </foreach>
        </if>
</update>
<delete id="deleteBatchIds"  
            parameterType="com.modular.table.param.CustomDataParam">
        delete from ${param.tableName} where id in
        <foreach collection="param.ids" item="id" index="index" open="(" close=")" separator=",">
            #{id}
        </foreach>
</delete>
<select id="selectById" resultType="java.util.Map">
        select * from ${param.tableName} where id = #{param.id}
    </select>
    <select id="selectCount" resultType="java.lang.Integer" 
          parameterType="com.modular.table.param.CustomDataParam">
        select count(1) from ${param.tableName} ${param.where}
</select>
<select id="selectList" resultType="java.util.Map" 
         parameterType="com.modular.table.param.CustomDataParam">
        select * from ${param.tableName} ${param.where}
</select>
<select id="selectListBySql" resultType="java.util.Map" parameterType="string">
        select * from ${query}
</select>

param.params.entrySet(),此处entrySet必须有括号! item="value" index="key"  ,不能用item="entry",然后再entry.key,entry.value!!!!!!!!!

之前使用mybatis时候不用param.属性啊,这次不知道为什么必须使用param.属性,直接写属性就报Parameter '**' not found. Available parameters are [0, 1, param1, param2],请大神指点!!!!!!

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值