MyBatis解決Update動態SQL逗號的問題
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>可以智能去掉最後一個逗號,十分方便!
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- mybatis中xml之trim屬性說明
- 詳解Mybatis Generator的具體使用教程
- Mybatis 批量更新實體對象方式
- 使用Spring Boot Mybatis 搞反向工程的步驟
- myBatis的mapper映射文件之批量處理方式