如何使用Spring JDBCTemplate正确使用预准备语句?

时间:2014-05-28 11:26:08

标签: java spring jdbctemplate

我必须对我将经常执行的数据库执行选择查询。通过正常的声明,它完全正常:

 List<Invoice> l = this.jdbcTemplate.query(
                     "SELECT id, name, stuff FROM example WHERE amount > ?",
                     new Object[] { "100" }, new RowMapper<Invoice>() {...} );

我经常执行上述语句,因此出于性能原因,我想使用预准备语句。但是我现在不确定我是如何使用spring API来实现这一目的的。

我很困惑为什么Spring希望我给一个PreparedStatementCreator的实例作为查询的参数?我认为这正是我每次使用查询方法时创建新的预准备语句的重点。因此,我认为以下代码片段中的某些内容绝对没有意义,因为每次调用query方法时都会新创建预处理语句:

 List<Invoice> l = this.jdbcTemplate.query(
                     new PreparedStatementCreator() {
                         String query = "SELECT id, name, stuff FROM example WHERE amount > ?";
                         public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {
                              return connection.prepareStatement(query);
                         }
                     },
                     new PreparedStatementSetter() {...}, 
                     new RowMapper<Invoice>() {...} );

我是否必须创建自己的ReusablePreparedStatementCreator?这只会在第一次调用createPreparedStatement时创建一个新方法。

PreparedStatementCreatorFactory可以帮帮我吗?

所以重新说一下,我如何正确地创建一个选择查询,该查询使用带有Spring JDBCTemplate的预准备语句来真正获得性能优势而不会失去RowMapper的优势?

1 个答案:

答案 0 :(得分:4)

首先,我不确定每次都不重新创建预准备语句会导致性能显着提高,因为JDBC驱动程序/数据库通常会缓存预准备语句。

但是如果你想用一个预准备语句执行多个查询,只需使用JdbcTemplate的execute()方法之一,它从SQL查询创建一个预准备语句(或者让你创建它),然后执行回调,将预准备的语句作为参数。您可以循环回调此回调,并多次执行该语句。