使用现代(大约在2012年)Spring JDBC模板调用存储过程的正确方法是什么?
说,我有一个同时声明IN
和OUT
参数的存储过程,如下所示:
mypkg.doSomething(
id OUT int,
name IN String,
date IN Date
)
我遇到过CallableStatementCreator
基于方法,我们必须显式注册IN
和OUT
参数化。在JdbcTemplate
课堂上考虑以下方法:
public Map<String, Object> call(CallableStatementCreator csc, List<SqlParameter> declaredParameters)
当然,我知道我可以这样使用它:
List<SqlParameter> declaredParameters = new ArrayList<SqlParameter>();
declaredParameters.add(new SqlOutParameter("id", Types.INTEGER));
declaredParameters.add(new SqlParameter("name", Types.VARCHAR));
declaredParameters.add(new SqlParameter("date", Types.DATE));
this.jdbcTemplate.call(new CallableStatementCreator() {
@Override
CallableStatement createCallableStatement(Connection con) throws SQLException {
CallableStatement stmnt = con.createCall("{mypkg.doSomething(?, ?, ?)}");
stmnt.registerOutParameter("id", Types.INTEGER);
stmnt.setString("name", "<name>");
stmnt.setDate("date", <date>);
return stmnt;
}
}, declaredParameters);
declaredParameters
我已经在csc
实现中注册它们的目的是什么?换句话说,为什么我需要传递一个csc
春天可以简单地在con.prepareCall(sql)
内部完成的事情?基本上,我不能传递其中一个而不是传递两个吗?
或者,是否有比我到目前为止遇到的方法更好的方法(使用Spring JDBC模板)调用存储过程?
注意:您可能会发现许多标题相似的问题,但与此题名不同。