Commit 745feaa50aba69b502f9631f1318014ca99286bf
1 parent
ba309f53
Exists in
master
and in
2 other branches
1.remove print code
Showing
1 changed file
with
0 additions
and
2 deletions
Show diff stats
src/main/java/com/taover/repository/CustomJdbcTemplate.java
... | ... | @@ -458,13 +458,11 @@ public class CustomJdbcTemplate<T, ID extends Serializable> { |
458 | 458 | //构造SQL语句及Entity Field列表 |
459 | 459 | List<Field> beanFieldList = new ArrayList<Field>(this.beanToTableField.size()); |
460 | 460 | String exeSql = this.constructUpdateSql(entityList.get(0), beanFieldList); |
461 | - System.out.println("exeSql >>>> "+exeSql); | |
462 | 461 | |
463 | 462 | //构造参数信息 |
464 | 463 | List<Object[]> batchArgs = new ArrayList<Object[]>(); |
465 | 464 | for(T item: entityList) { |
466 | 465 | Object[] itemData = this.getArgsByFieldAndEntity(item, beanFieldList); |
467 | - System.out.println("exeData >>>> "+itemData); | |
468 | 466 | batchArgs.add(itemData); |
469 | 467 | } |
470 | 468 | ... | ... |