Fix wrong method signature in documentation

Issue: SPR-11945
This commit is contained in:
Stephane Nicoll
2014-07-03 17:00:25 +02:00
parent bdceaa481b
commit 62351e0f6e

View File

@@ -23553,7 +23553,7 @@ parameters.
SqlParameterSource namedParameters = new MapSqlParameterSource("first_name", firstName);
return this.namedParameterJdbcTemplate.queryForObject(sql, Integer.class, namedParameters);
return this.namedParameterJdbcTemplate.queryForObject(sql, namedParameters, Integer.class);
}
----
@@ -23584,7 +23584,7 @@ The following example shows the use of the `Map`-based style.
Map<String, String> namedParameters = Collections.singletonMap("first_name", firstName);
return this.namedParameterJdbcTemplate.queryForObject(sql, Integer.class, namedParameters);
return this.namedParameterJdbcTemplate.queryForObject(sql, namedParameters, Integer.class);
}
----
@@ -23645,7 +23645,7 @@ of named parameter values.
SqlParameterSource namedParameters = new BeanPropertySqlParameterSource(exampleActor);
return this.namedParameterJdbcTemplate.queryForObject(sql, Integer.class, namedParameters);
return this.namedParameterJdbcTemplate.queryForObject(sql, namedParameters, Integer.class);
}
----