欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mybatis update更新字段的使用操作

程序员文章站 2022-04-06 22:09:48
多个mapper方法,更新单字段说实话不太推荐,因为如果有10个字段要更新,难道写10个方法。但是实际中很多人都这么写。通用mapper方法,java代码控制字段特点是一个mapper方法包含所有字段...

多个mapper方法,更新单字段

说实话不太推荐,因为如果有10个字段要更新,难道写10个方法。

但是实际中很多人都这么写。

通用mapper方法,java代码控制字段

特点是一个mapper方法包含所有字段,不为空的就update。

但是需要控制入参,一般有2中方式:

new 一个对象然后set id和要改的字段

如果字段多比较费劲,需要一个一个set。

查询出对象,然后set要改的字段

这2种方式差不多,就是代码看起来不一样。

特别注意,定位字段不要加if

要更新的字段加if没有什么问题

但是定位条件不要加if,因为万一忘记传递了,变成没有where条件,那么条数不可控了。搞不好把全表更新了,可就万劫不复了。

补充:mybatis执行批量更新update

目前想批量更新,如果update的值是相同的话,很简单,

update table set column='...' where id in (1,2,3)l

这样的sql就可以了。mybatis中这样写就行

<update id="batchupdatestudentwithmap" parametertype="java.util.map" >
 update student set name = #{name} where id in
 <foreach collection="idlist" index="index" item="item" open="(" separator="," close=")">
  #{item}
 </foreach>
</update>

但是这样的需求很少,一般是有个集合,每个元素中的值是不一样的,然后需要一次性更新。一般的处理方式是使用for循环。这样的效率较低,当数据量大时,期望有种一次性插入的操作。如果使用的是mysql,有

insert into table (aa,bb,cc) values(xx,xx,xx),(oo,oo,oo) on duplicate key update

replace into table (aa,bb,cc) values(xxx,xxx,xxx),(ooo,ooo,ooo),(ccc,ccc,ccc) 

两种方式可以处理。

当前数据库是oracle,可以使用case when来拼成一长串sql处理

update mytable
 set myfield = case id
  when 1 then 'value'
  when 2 then 'value'
  when 3 then 'value'
 end
where id in (1,2,3)

实际上这种方式对于mysql也有效。

最开始的时候,想着写一系列并列的更新语句就可以了

<update id="updatebatch" parametertype="java.util.list">
<foreach collection="list" item="item" index="index" separator=";"
 open="" close="">
 update region_code set
 code=#{item.code,jdbctype=varchar},
 name=#{item.name,jdbctype=varchar}
 where id = #{item.id,jdbctype=decimal}
</foreach>
</update>

这样直接报错,因为mybatis映射文件中的sql语句不允许 ; 符号。

两种方法:

第一种:需要在db链接url后面带一个参数 &allowmultiqueries=true

即:

jdbc:mysql://localhost:3306/mysqltest?characterencoding=utf-8&allowmultiqueries=true

第二种:按照可行的case when处理方式,mybatis映射文件书写方式如下:

<update id="updatebatch" parametertype="java.util.list">
 update region_code set
 code=
 <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end">
  when #{item.id,jdbctype=decimal} then #{item.code,jdbctype=varchar}
 </foreach>
 ,name=
 <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end">
  when #{item.id,jdbctype=decimal} then #{item.name,jdbctype=varchar}
 </foreach>
 where id in
 <foreach collection="list" index="index" item="item" separator="," open="(" close=")">
  #{item.id,jdbctype=decimal}
 </foreach>
</update>

至此,批量更新功能完成。

项目中实际使用案例:

<update id="updateforbatch" parametertype="java.util.list"> 
  update user_credit_black_list set 
  type= 
  <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end"> 
  when #{item.id,jdbctype=bigint} then #{item.type,jdbctype=varchar} 
  </foreach> 
  ,user_id= 
  <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end"> 
  when #{item.id,jdbctype=bigint} then #{item.userid,jdbctype=bigint} 
  </foreach> 
  ,update_time= 
  <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end"> 
  when #{item.id,jdbctype=bigint} then #{item.updatetime,jdbctype=timestamp} 
  </foreach> 
  ,delete_flg= 
  <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end"> 
  when #{item.id,jdbctype=bigint} then #{item.deleteflg,jdbctype=bit} 
  </foreach> 
  ,update_code= 
  <foreach collection="list" item="item" index="index" separator=" " open="case id" close="end"> 
  when #{item.id,jdbctype=bigint} then #{item.updatecode,jdbctype=bigint} 
  </foreach> 
  where id in 
  <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> 
  #{item.id,jdbctype=bigint} 
  </foreach> 
 </update> 

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。