码迷,mamicode.com
首页 > 其他好文 > 详细

MyBatis paramType类型为集合

时间:2017-06-22 17:40:44      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:array   div   str   ids   open   result   class   poj   table   

1  Array

<select id="queryPojoById" parameterType="String[]" resultMap="pojo">  
    select * from t_table where id in  
    <foreach collection="array" index="index" item="id" open="(" separator="," close=")">  
        #{id}  
    </foreach>  
</select> 
 

2  list 

<select id="queryPojoById" parameterType="list" resultMap="pojo">  
    select * from t_table where id in  
    <foreach collection="list" index="index" item="id" open="(" separator="," close=")">  
        #{id}  
    </foreach>  
</select> 

3 Map

<select id="queryPojoById" parameterType="map" resultMap="pojo">  
    select * from t_table where id in  
    <foreach collection="ids" index="index" item="id" open="(" separator="," close=")">  
        #{id}  
    </foreach>  
</select> 

   这里的ids指的的是你放入map里面的key

MyBatis paramType类型为集合

标签:array   div   str   ids   open   result   class   poj   table   

原文地址:http://www.cnblogs.com/miye/p/7066157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!