1、一般情况下可以将多个参数放入Map,让Map作为statement的参数
public void update(@Param("fieldMap") Map<String, Object> fields);
<update id="update" parameterType="Map"> UPDATE <include refid="table" /> SET <foreach item="value" index="key" collection="fieldMap" separator=","> ${key} = #{value} </foreach> WHERE id = #{map.id} </update>
Map的缺点是里面的Key值只有到了运行期才知道,而且无法处理类似一个Integer,一个List<Integer>的情况
如果专门写个Pojo的话,这个Pojo的复用性可能不好,容易定义大量的类。
2、另一个方法是在statement的接口方法声明中,设计多个参数。
public void set(@Param("name") String nameStr, @Param("ids") List<DepartmentPo> pos);
<!-- 注意这里不再需要parameterType属性了 --> <insert id="set"> UPDATE <include refid="table" /> SET name = #{name} WHERE id IN <foreach collection="pos" item="po" open="(" separator="," close=")"> #{po.id} </foreach> </insert>