mybatis 结果映射 collection oftype为string,integer等类型
<resultMap id="videoMap" type="com.yao.ivideo.model.dataobject.Obj"> <result column="id" property="id"/> <collection property="list" ofType="string"> <result column="name"/> </collection> </resultMap> <select id="selectById" resultMap="iMap"> select id,name from t_table where id in <foreach collection="list" item="id" separator="," open="(" close=")"> #{id} </foreach> </select>