这个spring类BatchPreparedStatementSetter有什么用呢?

发布于 2024-10-05 12:38:43 字数 311 浏览 0 评论 0原文

任何人都可以给我关于他的 spring 类的简短描述

org.springframework.jdbc.core.BatchPreparedStatementSetter

JavaDoc API 链接)

Can anyone give me short description about his spring class

org.springframework.jdbc.core.BatchPreparedStatementSetter

(JavaDoc API Link)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

檐上三寸雪 2024-10-12 12:38:43

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

此代码将说明如何使用它。

仔细看看 importEmployees 方法,一切都应该变得清晰起来。

It's used for bulk insertion of many rows at once.

This code will illustrate how it's used.

Take a good look at importEmployees method, and everything should become clear.

白首有我共你 2024-10-12 12:38:43

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;
}

batchUpdate can be done using JdbcTemplate batchUpdate method as follows..

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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文