使用 mybatis executortype.batch 每批插入 1000 条数据,遇到报错应该怎样日志打印出来报错的那条数据呢,LOG 开的是 INFO,目前想到的是 try catch 插入的方法打印报错的整个 1000 条数据。。
1
hcen1997 2021-08-12 11:41:47 +08:00
报的错有这个异常吗? org.apache.ibatis.executor.BatchExecutorException
mybatis 3.5.5 好像有相关信息的打印 ---- message.append(batchResult.getMappedStatement().getId()) .append(" (batch index #") .append(i + 1) --- org/mybatis/mybatis/3.5.5/mybatis-3.5.5-sources.jar!/org/apache/ibatis/executor/BatchExecutor.java:138 你看看 138 行的代码能不能解决你的问题 不过这个只能打印 index |