See:
Description
RowMapper interface, adding type parameterization.SimpleJdbcCall.SimpleJdbcInsert.ParameterizedRowMapper implementation that converts a row into a new instance of the specified mapped target class.ParameterizedRowMapper implementation that converts a single column into a single result value per row.JdbcDaoSupport that exposes a SimpleJdbcTemplate as well.JdbcTemplate, taking advantage of varargs and autoboxing, and exposing only the most commonly required operations in order to simplify JdbcTemplate usage.Simplification layer over JdbcTemplate for Java 5 and above.
SimpleJdbcTemplate is a wrapper around JdbcTemplate that takes advantage of varargs and autoboxing. It also offers only a subset of the methods available on JdbcTemplate: Hence, it does not implement the JdbcOperations interface or extend JdbcTemplate, but implements the dedicated SimpleJdbcOperations interface.
If you need the full power of Spring JDBC for less common operations, use the getJdbcOperations() method of SimpleJdbcTemplate and work with the returned classic template, or use a JdbcTemplate instance directly.
You are viewing a mobilized version of this site...
View original page here