MyBatis解决Update动态SQL逗号的问题
目录
- Update动态SQL逗号问题
- 解决办法
- Mapper(Update)逗号位置
Update动态SQL逗号问题
最做项目遇到以下情况,MyBatis中需要动态拼接Update,由于之前忙着赶项目,就直接照着下面的这样写,结果发现系统出现了异常,原来这样写如果 id=null就会出错
UPDATE TABLE SET <if test="id!=null"> id= #{id,jdbcType=INTEGER} </if> <if test"name!=null"> ,name = #{name,jdbcType=VARCHAR} </if> where id = #{id,jdbcType=INTEGER}
于是我查阅了网上的Mybatis的API和官方文档,找到了如下
解决办法
UPDATE TABLE <trim prefix="set" suffixOverrides=","> <if test="id!=null"> id= #{id,jdbcType=INTEGER}, </if> <if test"name!=null"> name = #{name,jdbcType=VARCHAR}, </if> </trim> where id = #{id,jdbcType=INTEGER}
<trim>节点标签:
trim主要功能是可以在Trim包含的内容前加上某些前缀(prefix),也可以在Trim包含的内容之后加上某些后缀(suffix)
还可以把Trim包含内容的首部的某些内容忽略掉(prefixOverrides) ,也可以把Trim包含的内容的尾部的某些内容忽略掉(suffixOverrides)
<trim prefix="set" suffixOverrides=",">
这行代码的意思是:在前面加上set 去掉最后的逗号!!!
备注方法2:把更新条件<if>标签内的内容,放在<set></set>标签中
Mapper(Update)逗号位置
<update id="update" parameterType="map"> update t_role <set> <if test="name != null and name !=''"> name=#{name}, </if> <if test="msg != null and msg !=''"> msg=#{msg}, </if> <if test="type != null and type !=''"> type=#{type}, </if> <if test="creator_id != null and creator_id !=''"> creator_id=#{creator_id}, </if> <if test="level != null and level !=''"> level=#{level} </if></set> where id=#{id} </update>
使用 <set></set>可以智能去掉最后一个逗号,十分方便!
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。
赞 (0)