在MyBatis中,可以通過傳入一個Map或者使用@Param注解來傳遞多個參數。
使用Map傳遞多個參數示例如下:
// 在mapper接口中定義方法
List<User> getUserListByParams(Map<String, Object> params);
// 在mapper.xml文件中使用參數
<select id="getUserListByParams" resultMap="userResultMap">
SELECT * FROM user
WHERE name = #{name} AND age = #{age}
</select>
// 在調用方法時傳入參數
Map<String, Object> params = new HashMap<>();
params.put("name", "Tom");
params.put("age", 20);
List<User> userList = userDao.getUserListByParams(params);
使用@Param注解傳遞多個參數示例如下:
// 在mapper接口中定義方法
List<User> getUserListByParams(@Param("name") String name, @Param("age") int age);
// 在mapper.xml文件中使用參數
<select id="getUserListByParams" resultMap="userResultMap">
SELECT * FROM user
WHERE name = #{name} AND age = #{age}
</select>
// 在調用方法時傳入參數
List<User> userList = userDao.getUserListByParams("Tom", 20);
通過以上兩種方式,就可以在MyBatis中傳遞多個參數。