MyBatis Batch Update Exception使用foreach批量update出錯

猿碼道發表於2018-01-30

1 問題描述

通過MyBatis框架,對Mysql資料庫做批量更新,對於的Mapper.xml配置:

<update id="updateTestcaseNodeBatch" parameterType="List">  
  <foreach collection="list" item="nodeVO" separator=";">  
    UPDATE testcase_node  
     <set>  
       name=#{nodeVO.name},  
       version=#{nodeVO.version},  
       description=#{nodeVO.description},  
       last_modify_user=#{nodeVO.createUser},  
       last_modify_time=#{nodeVO.createTime}  
     </set>  
     <where>  
       object_id=#{nodeVO.objectId} AND root_id=#{nodeVO.rootId}  
     </where>  
  </foreach>  
</update>
複製程式碼

異常資訊:

### The error may involve com.hirain.testmanagement.mapper.TestcaseNodeMapper.updateTestcaseNodeBatch-Inline
### The error occurred while setting parameters
### SQL: UPDATE testcase_node       SET name=?,        version=?,        description=?,        last_modify_user=?,        last_modify_time=?        WHERE object_id=? AND root_id=?     ;      UPDATE testcase_node       SET name=?,        version=?,        description=?,        last_modify_user=?,        last_modify_time=?        WHERE object_id=? AND root_id=?
### 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 testcase_node
      SET name='Türstatus',
       version=4,
     ' at line 8
; 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 testcase_node
      SET name='Türstatus',
       version=4,
     ' at line 8
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:233)
複製程式碼

2 排除過程

  1. 仔細檢查 map檔案 和資料庫表欄位沒有錯誤;【正常】
  2. 將生產的SQL,貼到Mysql Client端執行;【正常】
  3. 再次檢查JDBC驅動連結URL;【不正常】

3 解決問題

最終結果是 因為配置的 mysql jdbc連結字串 預設不支援一次性執行多個sql語句;但是在我們的 update map中需要執行多個 update語句。最後加上引數 "allowMultiQueries" 設定為true 如下:

<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true" />
複製程式碼

4 總結問題

問題解決!關鍵是解決問題的思路,由易到難,有外到內,確保最基本的配置不出問題。

相關文章