溫馨提示×

mybatis怎么用foreach傳入數(shù)據(jù)

小億
145
2023-12-22 10:06:57
欄目: 編程語言

MyBatis中的foreach標簽可以用來傳入一個集合或數(shù)組類型的參數(shù)。以下是使用foreach標簽傳入數(shù)據(jù)的步驟:

  1. 在SQL語句中使用foreach標簽,將需要循環(huán)的參數(shù)用#{}包圍起來。例如:
<select id="selectUsers" resultType="User">
  SELECT * FROM users WHERE id IN
  <foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
    #{item}
  </foreach>
</select>
  1. 在Mapper接口中聲明一個方法,方法的參數(shù)類型要與集合或數(shù)組類型的參數(shù)一致。例如:
public interface UserMapper {
  List<User> selectUsers(List<Integer> ids);
}
  1. 在Mapper.xml中配置該方法的SQL語句和參數(shù)映射。例如:
<mapper namespace="com.example.mapper.UserMapper">
  <select id="selectUsers" resultType="User">
    SELECT * FROM users WHERE id IN
    <foreach item="item" index="index" collection="list" open="(" separator="," close=")">
      #{item}
    </foreach>
  </select>
</mapper>
  1. 在代碼中調用該方法,并傳入集合或數(shù)組類型的參數(shù)。例如:
UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
List<Integer> ids = Arrays.asList(1, 2, 3);
List<User> userList = userMapper.selectUsers(ids);

在上述示例中,ids是一個包含1、2、3的List類型參數(shù)。foreach標簽會將這個集合中的每個元素按照指定的方式進行拼接,最終生成SQL語句的IN條件。

0