共計 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 小編將為大家推送更多相關知識點的文章,歡迎關注!
正文完