久久精品人人爽,华人av在线,亚洲性视频网站,欧美专区一二三

MyBatis拼接批量SQL語句執行報錯怎么解決

164次閱讀
沒有評論

共計 2455 個字符,預計需要花費 7 分鐘才能閱讀完成。

這篇文章主要講解了“MyBatis 拼接批量 SQL 語句執行報錯怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著丸趣 TV 小編的思路慢慢深入,一起來研究和學習“MyBatis 拼接批量 SQL 語句執行報錯怎么解決”吧!

下載服務器基礎業務數據進行本地批量插入操作,因項目中使用 mybatis 進行持久化操作,故直接考慮使用 mybatis 的批量插入功能。

1. 以下是 Mapper 接口的部分代碼

public interface PrintMapper{@InsertProvider(type = PrintMapperProvider.class,method =  insertAllLotWithVehicleCode4H2) void insertAllLotWithVehicleCode(List LotWithVehicleCodeBO  lotWithVehicleCodes);}

2. 對應 MapperProvider 中函數片段

public String insertAllLotWithVehicleCode4H2(Map String,List LotWithVehicleCodeBO  map){List LotWithVehicleCodeBO  lotWithVehicleCodeBOs = map.get( list StringBuilder sb = new StringBuilder( INSERT INTO MTC_LOT_WITH_VEHICLE_CODE (LOT_CODE,PRODUCT_VEHICLE_CODE) VALUES  MessageFormat messageFormat = new MessageFormat((  + # { list[{0}].lotCode },  + # {list[{0}].productVehicleCode }  + )  int size = lotWithVehicleCodeBOs.size(); for (int i = 0; i   size; i++){sb.append(messageFormat.format(new Object[]{i})); if (i   size - 1) sb.append(,} return sb.toString();}

3.service 層

@Transactionalpublic void synchLotWithVehicleCodeToLocalDB(List LotWithVehicleCodeBO  lotWithVehicleCodeBOs){ if(null != lotWithVehicleCodeBOs   lotWithVehicleCodeBOs.size() 0){printMapper.insertAllLotWithVehicleCode(lotWithVehicleCodeBOs);}}

程序上線的時候沒有發生問題,在業務量猛增的時候,大約同時執行 500 條以上的時候程序就開始報錯:

Caused by: org.apache.ibatis.builder.BuilderException: Improper inline parameter map format. Should be: #{propName,attr1=val1,attr2=val2}at org.apache.ibatis.builder.SqlSourceBuilder$ParameterMappingTokenHandler.buildParameterMapping(SqlSourceBuilder.java:89)at org.apache.ibatis.builder.SqlSourceBuilder$ParameterMappingTokenHandler.handleToken(SqlSourceBuilder.java:43)at org.apache.ibatis.parsing.GenericTokenParser.parse(GenericTokenParser.java:25)at org.apache.ibatis.builder.SqlSourceBuilder.parse(SqlSourceBuilder.java:24)at org.apache.ibatis.builder.annotation.ProviderSqlSource.createSqlSource(ProviderSqlSource.java:57)... 61 more

異常已指明 SQL 語句構建問題,DEBUG 進去:

問題根源:

MessageFormat messageFormat = new MessageFormat((  + # { list[{0}].lotCode },  + # {list[{0}].productVehicleCode },  + ) int size = lotWithVehicleCodeBOs.size();for (int i = 0; i   size; i++){ sb.append(messageFormat.format(new Object[]{i}));  if (i size-1) sb.append(,}

當 size 達到 3 位數以上時構建出的 message 為:

(#{list[1,000].lotCode },#{list[1,000].productVehicleCode })

解決辦法:messageFormat.format(new Object[]{i+}

感謝各位的閱讀,以上就是“MyBatis 拼接批量 SQL 語句執行報錯怎么解決”的內容了,經過本文的學習后,相信大家對 MyBatis 拼接批量 SQL 語句執行報錯怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是丸趣 TV,丸趣 TV 小編將為大家推送更多相關知識點的文章,歡迎關注!

正文完
 
丸趣
版權聲明:本站原創文章,由 丸趣 2023-07-15發表,共計2455字。
轉載說明:除特殊說明外本站除技術相關以外文章皆由網絡搜集發布,轉載請注明出處。
評論(沒有評論)
主站蜘蛛池模板: 芮城县| 灵宝市| 贡觉县| 青田县| 临汾市| 景宁| 渭源县| 嵩明县| 甘谷县| 新河县| 瑞丽市| 开原市| 游戏| 鹤峰县| 平阴县| 涟源市| 井冈山市| 紫阳县| 视频| 乌拉特后旗| 井陉县| 西丰县| 十堰市| 石阡县| 江口县| 栾川县| 丰县| 双牌县| 宁晋县| 马山县| 合山市| 商南县| 萨嘎县| 融水| 长丰县| 保德县| 易门县| 九龙县| 浏阳市| 元江| 县级市|