我是靠谱客的博主 文艺花生,最近开发中收集的这篇文章主要介绍myBatis遍历数组参数方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!-- 遍历list集合,collection="list",如果你传参的时候是直接传递list集合,那么这里只能填list,不能填参数名 -->
<select id="selectByList" resultType="User">
    select * from t_user where uid in
    <foreach collection="list" item="item" open="(" separator="," close=")">
        #{item}
    </foreach>
</select>
<!-- 遍历数组 ,collection="array",如果你传参的时候是直接传递数组,那么这里只能填array,不能填参数名-->
<select id="selectByArray" resultType="User">
    select * from t_user where uid in
    <foreach collection="array" item="item" open="(" separator="," close=")">
        #{item}
    </foreach>
</select>
<!-- 遍历包装类中的数组,collection="ids",这里不再是array,而是包装类中对应的变量名,因为你传递的参数是一个包装类,mybatis是通过get方法获取包装类中的数组 -->
<select id="selectUserVoByArray" parameterType="UserVo" resultType="User">
    select * from t_user where uid in
    <foreach collection="ids" item="item" open="(" separator="," close=")">
        #{item}
    </foreach>
</select>
<!-- 遍历包装类中的list集合,collection="idList",这里不再是list,而是包装类中对应的变量名,因为你传递的参数是一个包装类,mybatis是通过get方法获取包装类中的list集合 -->
<select id="selectUserVoByList" parameterType="UserVo" resultType="User">
    select * from t_user where uid in
    <foreach collection="idList" item="item" open="(" separator="," close=")">
        #{item}
    </foreach>
</select>
</mapper>
————————————————
版权声明:本文为CSDN博主「ACodeBird」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/ChOLg/article/details/100162800

最后

以上就是文艺花生为你收集整理的myBatis遍历数组参数方法的全部内容,希望文章能够帮你解决myBatis遍历数组参数方法所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部