Mybatise,在xml中循环list或map

前端之家收集整理的这篇文章主要介绍了Mybatise,在xml中循环list或map前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
-- mybatise xml可以循环list/map等 <update id="saveSort" parameterType="java.util.Map"> <foreach collection="sortMap.keys" open="" close="" separator="; " item="key"> UPDATE `standard_switchover` set sort= <if test='sortMap[key] == null and sortMap[key] == ""'> NULL </if> <if test="sortMap[key] != ''"> #{sortMap[${key}]} </if> WHERE id=#{key} </foreach> </update>

猜你在找的XML相关文章