ibatis使用HashMap传递SQL参数

时间:2022-05-22 21:43:14

虽然ibatai sql map可以配置多个参数,但sqlMap只能传入一个参数,我们有两种方式,一是把我们的参数封装成一个类,通过set/get取值的方式给sql map注入参数,二是通过hashMap(可以组合一些不是同一个pojo的参数有优势)

 

<select id="getPeopleList" resultClass="model.User" parameterClass="java.util.Map">
  <![CDATA[
     select * from test where name like '%$name$%'
  ]]>
</select>

 

   Map map=new HashMap();
   map.put("name", "gaoxiang");    key为参数名,value位数据
   List list = sqlMap.queryForList("getPeopleList", map);