JdbcTemplate的几个batchUpdate方法,怎样设置 batchSize的大小?
看源码发现,batchSize的大小就是一次性传入的数据量大小,如果一次传入的数据太多,可能会出问题,不能设置batchSize的大小吗?...
看源码发现,batchSize的大小就是一次性传入的数据量大小,如果一次传入的数据太多,可能会出问题,不能设置batchSize的大小吗?
展开
2个回答
展开全部
不知道是不是想要这样的效果
To produce result similar to Hibernate (with prepared statment), you should use JdbcTemplate.batchUpdate(String, BatchPreparedStatementSetter). Something like this:final List<Car> cars = Arrays.asList(...);
getJdbcTemplate().batchUpdate("insert into Car (name, id) values (?, ?);",
new BatchPreparedStatementSetter(){
private int i =0;
public int getBatchSize(){return cars.size();}
public void setValues(PreparedStatement ps){
ps.setString(1, cars.get(i).getName());
ps.setInt(2, cars.get(i).getId());
i++;
}
});
To produce result similar to Hibernate (with prepared statment), you should use JdbcTemplate.batchUpdate(String, BatchPreparedStatementSetter). Something like this:final List<Car> cars = Arrays.asList(...);
getJdbcTemplate().batchUpdate("insert into Car (name, id) values (?, ?);",
new BatchPreparedStatementSetter(){
private int i =0;
public int getBatchSize(){return cars.size();}
public void setValues(PreparedStatement ps){
ps.setString(1, cars.get(i).getName());
ps.setInt(2, cars.get(i).getId());
i++;
}
});
2015-08-05
展开全部
典型的山炮楼主,自己解决了问题,也不公布,有没有想过后来人的感受
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询