5

谁能给我简要介绍一下他的春季班

org.springframework.jdbc.core.BatchPreparedStatementSetter

JavaDoc API 链接

4

2 回答 2

8

它用于一次批量插入多行。

这段代码将说明它是如何使用的。

好好看看importEmployees方法,一切都应该清楚了。

于 2010-12-01T06:39:11.910 回答
0

batchUpdate 可以使用 JdbcTemplate batchUpdate 方法完成,如下所示。

public int[] batchUpdate(final List<Actor> actors) {
int[] updateCounts = jdbcTemplate.batchUpdate("update t_actor set first_name = ?, " +
"last_name = ? where id = ?",
new BatchPreparedStatementSetter() {
public void setValues(PreparedStatement ps, int i) throws SQLException {
ps.setString(1, actors.get(i).getFirstName());
ps.setString(2, actors.get(i).getLastName());
ps.setLong(3, actors.get(i).getId().longValue());
}
public int getBatchSize() {
return actors.size();
}
});
return updateCounts;
}
于 2015-06-16T03:01:28.353 回答