单个参数传递的情况:用parameterType指定传入参数类型
publicList
selectt.* from tableName t where t.id= #{id}
多个参数传递的情况,由于是多参数那么就不能使用parameterType
第一种方案 :在dao层直接当入参传入,在mapper中根据顺序接收,如#{0},#{1},依次类推
DAO层的函数方法
PublicUser selectUser(String name,Stringarea);
对应的Mapper.xml
select * from user_user_t where user_name = #{0}and user_area=#{1}
其中,#{0}代表接收的是dao层中的第一个参数,#{1}代表dao层中第二参数,更多参数一致往后加即可。
第二种方案:将参数放入到 map中,此时map中key的名称要和sql中的参数对应
此方法采用Map传多参数.
Dao层的函数方法
PublicUser selectUser(Map paramMap);
对应的Mapper.xml
select * from user_user_t where user_name = #{userName,jdbcType=VARCHAR}and user_area=#{userArea,jdbcType=VARCHAR}
Service层调用
PrivateUser xxxSelectUser(){
MapparamMap=new hashMap();
paramMap.put(“userName”,”对应具体的参数值”);
paramMap.put(“userArea”,”对应具体的参数值”);
Useruser=xxx. selectUser(paramMap);}
第三中方案:List封装数据,在mapper中使用in遍历
Dao层的函数方法
publicList
对应的Mapper.xml
select字段...from XXX where id in
#{item}
foreach最后的效果是select字段...from XXX where id in ('1','2','3','4')
第四中方案:使用java实体类封装参数传递,此时sql中的传入的参数与实体类中的否个属性对应
dao层
TeacherqueryTeacher=new Teacher();
queryTeacher.setId(2);
List
for(Teacher entityTemp : tList) {
System.out.println(entityTemp.toString());}
select* from Teacher where c_id=#{id}
第五种方案:注解方式,在dao层用@param注解要传递的参数,在mapper中直接按名字接收
Dao层的函数方法
PublicUser selectUser(@param(“userName”)Stringname,@param(“userArea”)Stringarea);
对应的Mapper.xml
select * from user_user_t where user_name = #{userName,jdbcType=VARCHAR}and user_area=#{userArea,jdbcType=VARCHAR}