91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mybatis中怎么利用useGeneratedKeys獲取自增主鍵

發布時間:2021-07-29 14:04:28 來源:億速云 閱讀:214 作者:Leah 欄目:編程語言

Mybatis中怎么利用useGeneratedKeys獲取自增主鍵,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

批量插入用戶收藏

for (tries = 0; tries < MAX_RETRY; tries++) { final int result = collectionMapper.insertCollections(collections); if (result == collections.size()) {  break; }}if (tries == MAX_RETRY) { throw new RuntimeSqlException("Insert collections error");}// 依賴數據庫生成的collectionidreturn collections;

collectionMapper.insertCollections 方法

<insert id="insertCollections" parameterType="list" useGeneratedKeys="true"  keyProperty="collectionId"> INSERT INTO collection( userid, item ) VALUES <foreach collection="list" item="collection" separator=",">  (#{collection.userId}, #{collection.item}) </foreach> ON DUPLICATE KEY UPDATE status = 0</insert>

不知道大家能不能發現其中的問題

分析

問題有兩個

返回值result的判斷錯誤

使用on duplicate key 批量update返回影響的行數是和插入的數不一樣的。犯這種錯主要在于想當然,不看文檔

看下官網文檔

寫的很清楚

With ON DUPLICATE KEY UPDATE, the affected-rows value per row is 1 if the row is inserted as a new row, 2 if an existing row is updated, and 0 if an existing row is set to its current values. If you specify the CLIENT_FOUND_ROWS flag to the mysql_real_connect() C API function when connecting to mysqld, the affected-rows value is 1 (not 0) if an existing row is set to its current values.

返回值有三種

0: 沒有更新 1 :insert 2. update

還有一個特殊情況,update 一個相同值到原來的值,這個根據客戶端配置,可能為0,可能為1。

所以這個判斷明顯錯誤

利用批量InsertOrUpdate的userGeneratedKey來返回自增主鍵

這個問題批量插入時有update語句時,就會發現有問題。返回的自增主鍵都是錯的,這是為什么呢?

1. 首先我們看下mybatis對于useGeneratedKey的描述

>This tells MyBatis to use the JDBC getGeneratedKeys method to retrieve keys generated internally by the database (e.g. auto increment fields in RDBMS like MySQL or SQL Server). Default: false.

就是使用JDBC的getGeneratedKeys的方法來獲取的。

2. 我們再找下JDBC的規范

Before version 3.0 of the JDBC API, there was no standard way of retrieving key values from databases that supported auto increment or identity columns. With older JDBC drivers for MySQL, you could always use a MySQL-specific method on the Statement interface, or issue the query SELECT LAST_INSERT_ID() after issuing an INSERT to a table that had an AUTO_INCREMENT key. Using the MySQL-specific method call isn't portable, and issuing a SELECT to get the AUTO_INCREMENT key's value requires another round-trip to the database, which isn't as efficient as possible. The following code snippets demonstrate the three different ways to retrieve AUTO_INCREMENT values. First, we demonstrate the use of the new JDBC 3.0 method getGeneratedKeys() which is now the preferred method to use if you need to retrieve AUTO_INCREMENT keys and have access to JDBC 3.0. The second example shows how you can retrieve the same value using a standard SELECT LAST_INSERT_ID() query. The final example shows how updatable result sets can retrieve the AUTO_INCREMENT value when using the insertRow() method.

意思就是JDBC3.0以前,有些亂七八糟的定義的,沒有統一,之后統一成了getGeneratedKeys()方法。兩邊是一致的。實現的原理主要就是數據庫端返回一個LAST_INSERT_ID。這個跟auto_increment_id強相關。

我們看下auto_increment_id的定義。重點關注批量插入

For a multiple-row insert, LAST_INSERT_ID() and mysql_insert_id() actually return the AUTO_INCREMENT key from the first of the inserted rows. This enables multiple-row inserts to be reproduced correctly on other servers in a replication setup.

批量插入的時候只會返回一個id,這個id值是第一個插入行的AUTO_INCREMENT值。至于為什么這么干,能夠使得mysql-server在master-slave架構下也能保證id值統一的原因可以看下這篇。本篇文章就不展開了。

那么mysql server只返回一個id,客戶端批量插入的時候怎么能實現獲取全部的id呢

3. 客戶端的實現

我們看下客戶端getGeneratedKeys的實現。

JDBC com.mysql.jdbc.StatementImpl

public synchronized ResultSet getGeneratedKeys() throws SQLException {  if (!this.retrieveGeneratedKeys) {   throw SQLError.createSQLException(Messages.getString("Statement.GeneratedKeysNotRequested"), "S1009", this.getExceptionInterceptor());  } else if (this.batchedGeneratedKeys == null) {   // 批量走這邊的邏輯   return this.lastQueryIsOnDupKeyUpdate ? this.getGeneratedKeysInternal(1) : this.getGeneratedKeysInternal();  } else {   Field[] fields = new Field[]{new Field("", "GENERATED_KEY", -5, 17)};   fields[0].setConnection(this.connection);   return ResultSetImpl.getInstance(this.currentCatalog, fields, new RowDataStatic(this.batchedGeneratedKeys), this.connection, this, false);  } }

看下調用的方法 this.getGeneratedKeysInternal()

protected ResultSet getGeneratedKeysInternal() throws SQLException {    // 獲取影響的行數    int numKeys = this.getUpdateCount();    return this.getGeneratedKeysInternal(numKeys);  }

這里有個重要知識點了,首先獲取本次批量插入的影響行數,然后再執行具體的獲取id操作。

getGeneratedKeysInternal方法

protected synchronized ResultSet getGeneratedKeysInternal(int numKeys) throws SQLException {    Field[] fields = new Field[]{new Field("", "GENERATED_KEY", -5, 17)};    fields[0].setConnection(this.connection);    fields[0].setUseOldNameMetadata(true);    ArrayList rowSet = new ArrayList();    long beginAt = this.getLastInsertID();    // 按照受影響的范圍+遞增步長    for(int i = 0; i < numKeys; ++i) {       if (beginAt > 0L) {            // 值塞進去            row[0] = StringUtils.getBytes(Long.toString(beginAt));          }      beginAt += (long)this.connection.getAutoIncrementIncrement();    }}

迭代影響的行數,然后依次獲取id。

所以批量insert是正確可以返回的。

但是批量insertOrUpdate就有問題了,批量insertOrUpdate的影響行數不是插入的數據行數,可能是0,1,2這樣就導致了自增id有問題了。

比如插入3條數據,2條會update,1條會insert,這時候updateCount就是5,generateid就會5個了,mybatis然后取前3個塞到數據里,顯然是錯的。

以上是原理分析,如果想了解更詳細的實驗結果,可以看下實驗

總結

批量insert

<insert id="insertAuthor" useGeneratedKeys="true"  keyProperty="id"> insert into Author (username, password, email, bio) values <foreach item="item" collection="list" separator=",">  (#{item.username}, #{item.password}, #{item.email}, #{item.bio}) </foreach></insert>

來自官網的例子,mapper中不能指定@Param參數,否則會有問題

批量insertOrUpdate

不能依賴useGeneratedKey返回主鍵。

關于Mybatis中怎么利用useGeneratedKeys獲取自增主鍵問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江都市| 逊克县| 钦州市| 抚宁县| 兴海县| 贵溪市| 介休市| 宣威市| 盐城市| 辉县市| 陇西县| 本溪市| 临泉县| 罗平县| 陆河县| 腾冲县| 镇康县| 江油市| 鲁甸县| 连平县| 文成县| 鸡东县| 邯郸县| 同心县| 恩施市| 公主岭市| 昔阳县| 平定县| 呼图壁县| 腾冲县| 东乌珠穆沁旗| 明水县| 鲁甸县| 岗巴县| 泗洪县| 武胜县| 临汾市| 兴山县| 祥云县| 五台县| 漠河县|