MyBatis paramType类型为集合

Posted miye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis paramType类型为集合相关的知识,希望对你有一定的参考价值。

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类型为集合的主要内容,如果未能解决你的问题,请参考以下文章

mybatis返回集合类型为map时

mybatis 集合、数组类型参数语法

MyBatis3——输出参数ResultType动语态sql

Mybatis的resultType返回集合

c++11-17 模板核心知识—— 理解模板参数推导规则

soapui里 paramtype =form 类型参数怎么传值