在mybatis使用中,经常会使用到in()查询
实现要实现 String[] 然后在mybatis条件中使用array接收
<select id="selectList" parameterType="java.util.List" resultType="type">
SELECT * FROM t_type
WHERE id IN
<foreach collection="array" index="index" item="item"
open="(" separator="," close=")">
#{item}
</foreach>
</select>