org.springframework.jdbc.core.simple |
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.
|
Java Source File Name | Type | Comment |
AbstractJdbcCall.java | Class | Abstract class to provide base functionality for easy stored procedure calls
based on configuration options and database metadata. |
AbstractJdbcInsert.java | Class | Abstract class to provide base functionality for easy inserts
based on configuration options and database metadata. |
ParameterizedBeanPropertyRowMapper.java | Class | Generic ParameterizedRowMapper implementation that converts a row into a new instance
of the specified mapped target class. |
ParameterizedRowMapper.java | Interface | Extension of the
org.springframework.jdbc.core.RowMapper interface,
adding type parameterization. |
SimpleJdbcCall.java | Class | A SimpleJdbcCall is a multi-threaded, reusable object representing a call
to a stored procedure or a stored function. |
SimpleJdbcCallOperations.java | Interface | Interface specifying the API for a Simple JDBC Call implemented by
SimpleJdbcCall . |
SimpleJdbcDaoSupport.java | Class | Extension of
org.springframework.jdbc.core.support.JdbcDaoSupport that exposes a
SimpleJdbcDaoSupport.getSimpleJdbcTemplate() SimpleJdbcTemplate as well. |
SimpleJdbcInsert.java | Class | A SimpleJdbcInsert is a multi-threaded, reusable object providing easy insert
capabilities for a table. |
SimpleJdbcInsertOperations.java | Interface | Interface specifying the API for a Simple JDBC Insert implemented by
SimpleJdbcInsert . |
SimpleJdbcOperations.java | Interface | JDBC operations interface usable on Java 5 and above, exposing a
set of common JDBC operations, whose interface is simplified
through the use of varargs and autoboxing. |
SimpleJdbcTemplate.java | Class | Java-5-based convenience wrapper for the classic Spring
org.springframework.jdbc.core.JdbcTemplate ,
taking advantage of varargs and autoboxing, and exposing only the most
commonly required operations in order to simplify JdbcTemplate usage.
Use the
SimpleJdbcTemplate.getJdbcOperations() method (or a straight JdbcTemplate)
if you need to invoke less commonly used template methods. |