foreach后面的collection中的参数,一般怎么写,比如List就是小写的list?
如果我的参数是List ,那么collection后肯定就是list
<delete id="deleteBatch"parameterType="java.util.List"> <foreach collection="list" item="item" separator=",">
如果是map,也是小写的map?
我在其他网站,有看到collection后是params.keys,看意思就是map的key来进行迭代的,这个params是不是也是同这里的list一样