MyBatis MapperProvider MessageFormat拼接批量SQL語句履行報錯的緣由剖析及處理方法。本站提示廣大學習愛好者:(MyBatis MapperProvider MessageFormat拼接批量SQL語句履行報錯的緣由剖析及處理方法)文章只能為提供參考,不一定能成為您想要的結果。以下是MyBatis MapperProvider MessageFormat拼接批量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+""}