码迷,mamicode.com
首页 > 编程语言 > 详细

MyBatis 传入数组 集合类 使用foreach遍历

时间:2020-02-12 16:25:15      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:mapper   resultmap   遍历   arraylist   pre   ace   interface   sel   select   

mapper中传入数组或集合类,使用foreach标签遍历出其中的值与SQL语句拼接

JAVA dao层接口

public interface UserDao {
    public List<User> getUsersByCollection(Collection collection);
}

mapper文件

<select id="getUsersByCollection" resultMap="userMapper">
    select * from users where id in

    <foreach collection="list" item="id" open="(" close=")" separator=",">
            #{id}
    </foreach>
        
</select>

测试

@Test
public void getUsersByCollection() {
    Collection collection = new ArrayList<Integer>();
    collection.add(1);
    collection.add(3);
    collection.add(5);

    List<User> users = userDao.getUsersByCollection(collection);
    System.out.println(users);
}

MyBatis 传入数组 集合类 使用foreach遍历

标签:mapper   resultmap   遍历   arraylist   pre   ace   interface   sel   select   

原文地址:https://www.cnblogs.com/esrevinud/p/12299195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!