国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

mybatis 實現多條update同時執行

瀏覽:3日期:2023-10-20 11:03:08

想在mapper的一個更新節點進行多條update語句的操作:

<update parameterType='java.lang.String'> update user set valid_status = 1 where mobile_phone = #{mobilePhone}; update user_account set valid_status = 1 where mobile_phone = #{mobilePhone} ;</update>

mybatis是默認不支持的,需要在數據庫配置中配置相關參數:

propertes 或者yml配置 文件中的jdbc后追加&allowMultiQueries=true

jdbc.jdbcUrl=jdbc:mysql://127.0.0.1:3306/database?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true

補充:mybatis批量更新update-設置多個字段值

mybatis由于簡單易用性得到大家的認可和使用

但是在批量更新操作中,網上介紹的貌似不全,正好今天做個記錄,大家一起進步

在實際項目開發過程中,常有這樣的需求:根據ids更新表的某一個字段值,這時的sql語句是:

public interface IStaffDao { void batchUpdate(@Param('list') List<Long> list);}

<select resultMap='staff_Mapper'> update staff set status = 0 where id in <foreach collection='list' item='item' index='index' open='(' separator=',' close=')' > #{item} </foreach> ORDER BY id</select>

還有一種情況:根據ids更新表的多個值,并且每個id對應的值也不一樣,這時上述語句已經滿足不了需求,需要另一種批量更新sql語句

public interface IStaffDao { void batchUpdate(@Param('list') List<Staff> list);}

<update parameterType='java.util.List' > <foreach collection='list' item='item' index='index' separator=';'> UPDATE staff set count = #{item.count} , code = #{item.code} , invalid_time = #{item.time} WHERE id = #{item.id} </foreach></update>

由于這種批量更新是一次執行多個update語句,所以mybatis需要額外的配置:

在spring.datasource.url后加上allowMultiQueries=true

如:jdbc:mysql://10.10.20.36:3306/test?allowMultiQueries=true

否則,在執行sql語句時,會報下面的錯誤

[org.apache.ibatis.session.defaults.DefaultSqlSession@76a2f910]org.springframework.jdbc.BadSqlGrammarException: ### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ’update b_email_msg_remind SET send_status = 1, send_email_code=’[email protected]’’ at line 6### The error may involve com.hhsoft.sectionservice.model.persistence.EmailMapper.updateEmailTasks-Inline### The error occurred while setting parameters### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ’update staff SET status = 1, send_email_code=’[email protected]’;<span style='font-family: Helvetica, Tahoma, Arial, sans-serif;'>update sta<span style='font-size:10px;'>ff SET status = 2,</span> send_email_code=’[email protected]’ </span>’ at line 6; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ’update b_email_msg_remind SET send_status = 1, send_email_code=’[email protected]’’ at line 6

以上為個人經驗,希望能給大家一個參考,也希望大家多多支持好吧啦網。如有錯誤或未考慮完全的地方,望不吝賜教。

標簽: Mybatis 數據庫
相關文章:
主站蜘蛛池模板: 欧美一区二区三区在观看 | 一级特黄a免费大片 | 综合在线视频精品专区 | 亚洲第一在线播放 | 一区二区三区在线 | 久久香蕉国产线看观看亚洲片 | 国产欧美视频综合二区 | 男女午夜免费视频 | 毛片免费在线 | 日韩中文字幕视频在线 | 4455四色永久免费 | 99久久精品免费视频 | 麻豆日韩| 91精品一区二区三区在线播放 | 国产精品久久久久网站 | 天干天干天啪啪夜爽爽色 | 99精品视频在线观看免费 | 日本xxxxx黄区免费看动漫 | 精品在线视频观看 | 亚洲欧美久久一区二区 | 成人欧美一区在线视频在线观看 | 欧美视频精品一区二区三区 | 久草成人在线视频 | 国产欧美日韩视频在线观看一区二区 | 一区二区三区国产精品 | 性色xxx | 成 人 在 线 免费 8888 www | 久久高清一级毛片 | 亚洲九九香蕉 | 欧美大片国产在线永久播放 | 久久久日本久久久久123 | 免费观看亚洲视频 | 午夜视频一区二区三区 | 日本一级毛片免费播放 | 国产麻豆入在线观看 | 毛片免费大全 | 国产精品99久久久久久宅男 | 亚洲国产伦理 | 欧美国产一区二区三区 | 国产免费一级视频 | 一级午夜a毛片免费视频 |