时间:2021-05-19
mybatis 动态sql之Map参数
Mapper文件:
test表达式中不用再加#,$之类的取值符了,就直接这样写就可以取到map中key所对应的值,而其他地方需要有#{map中的key}来取得map中该key所对应的值
<pre name="code" class="html">
后台传递到mybatis的map参数,不要深究函数含义,知道下面这个map最终是传递到mybatis中的parameterType就够了
public Map<String,String> parseMap(HttpServletRequest req){ Map<String,String> map=new HashMap<String,String>(); map.put("prod_id", prod_id); map.put("purc_id", purc_id ); map.put("ch_name", ch_name ); map.put("ch_id", ch_id); map.put("purc_time", purc_time); return map;}Mybatis传入参数类型为Map
方式一:
mybatis更新sql语句:
<update id="publishT00_notice" parameterType="Map">update test set createdate = #{createdate},creator = #{creator}where id in <foreach collection="ids" item="ids" separator="," open="(" close=")">#{ids}</foreach></update>传入map参数类型:
HashMap<String,Object> map = new HashMap<String, Object>();map.put("creator", "creator");map.put("createdate", "createdate");String[] ids = {"1","2"};map.put("ids", ids );方式二:
第一步在你的mapper写上:
List<WeixinUserLocationList> findweixinUserLocations(@Param("params") Map<String, Object> map);注意就是注解@param 这个,是mybatis的
然后在xml中这样写:
<if test="params.accountId!=null"> and a.accountid=#{params.accountId} </if> <if test="params.nickname!=null and params.nickname !=''"> and a.nickname like '%${params.nickname}%' </if> <if test="params.beginDate!=null and params.beginDate!=''"> and date_format(a.createtime,'%Y-%m-%d')>=${params.beginDate} </if> <if test="params.endDate!=null and params.endDate!=''"> <![CDATA[ and date_format(a.createtime,'%Y-%m-%d')<=${params.endDate} ]]> </if>${params.nickname}这种写法参数默认是传字符串,#{params.accountId}可以取Long,Integer之类的。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前言MyBatis的强大特性之一便是它的动态SQL。所以今天小编在这里为大家介绍一下Mybatis的一个强大功能-动态SQL动态SQL是Mybatis的一个强大
动态SQL什么是动态SQL?MyBatis的官方文档中是这样介绍的?动态SQL是MyBatis的强大特性之一。如果你使用过JDBC或其它类似的框架,你应该能理解
一、简介Mybatis-Plus是一款MyBatis动态sql自动注入crud简化增删改查操作中间件。启动加载XML配置时注入mybatis单表动态SQL操作,
1.什么是mybatis动态sql看到动态,我们就应该想到,这是一个可以变化的sql语句MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在
一、介绍mybatis中使用Mapper.xml里面的配置进行sql查询,经常需要动态传递参数,例如我们需要根据用户的姓名来筛选用户时,sql如下:select