批量执行 sql语句
String[] sql= new String[100];
sql[0]="insert into ...";

jdbcTemplate.batchUpdate(sql);