Package org.springframework.jdbc.object
Class MappingSqlQueryWithParameters<T>
java.lang.Object
org.springframework.jdbc.object.RdbmsOperation
org.springframework.jdbc.object.SqlOperation
org.springframework.jdbc.object.SqlQuery<T>
org.springframework.jdbc.object.MappingSqlQueryWithParameters<T>
- Type Parameters:
T
- the result type
- All Implemented Interfaces:
InitializingBean
- Direct Known Subclasses:
MappingSqlQuery
Reusable RDBMS query in which concrete subclasses must implement
the abstract mapRow(ResultSet, int) method to map each row of
the JDBC ResultSet into an object.
Such manual mapping is usually preferable to "automatic" mapping using reflection, which can become complex in non-trivial cases. For example, the present class allows different objects to be used for different rows (for example, if a subclass is indicated). It allows computed fields to be set. And there's no need for ResultSet columns to have the same names as bean properties. The Pareto Principle in action: going the extra mile to automate the extraction process makes the framework much more complex and delivers little real benefit.
Subclasses can be constructed providing SQL, parameter types and a DataSource. SQL will often vary between subclasses.
- Author:
- Rod Johnson, Thomas Risberg, Jean-Pierre Pawlak
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected class
Implementation of RowMapper that calls the enclosing class'smapRow
method for each row. -
Field Summary
Fields inherited from class org.springframework.jdbc.object.RdbmsOperation
logger
-
Constructor Summary
ConstructorDescriptionConstructor to allow use as a JavaBean.Convenient constructor with DataSource and SQL string. -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract T
Subclasses must implement this method to convert each row of the ResultSet into an object of the result type.newRowMapper
(Object[] parameters, Map<?, ?> context) Implementation of protected abstract method.Methods inherited from class org.springframework.jdbc.object.SqlQuery
execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, executeByNamedParam, executeByNamedParam, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObjectByNamedParam, findObjectByNamedParam, getRowsExpected, setRowsExpected
Methods inherited from class org.springframework.jdbc.object.SqlOperation
compileInternal, getParsedSql, newPreparedStatementCreator, newPreparedStatementCreator, newPreparedStatementSetter, onCompileInternal
Methods inherited from class org.springframework.jdbc.object.RdbmsOperation
afterPropertiesSet, allowsUnusedParameters, checkCompiled, compile, declareParameter, getDeclaredParameters, getGeneratedKeysColumnNames, getJdbcTemplate, getResultSetType, getSql, isCompiled, isReturnGeneratedKeys, isUpdatableResults, resolveSql, setDataSource, setFetchSize, setGeneratedKeysColumnNames, setJdbcTemplate, setMaxRows, setParameters, setQueryTimeout, setResultSetType, setReturnGeneratedKeys, setSql, setTypes, setUpdatableResults, supportsLobParameters, validateNamedParameters, validateParameters
-
Constructor Details
-
MappingSqlQueryWithParameters
public MappingSqlQueryWithParameters()Constructor to allow use as a JavaBean. -
MappingSqlQueryWithParameters
Convenient constructor with DataSource and SQL string.- Parameters:
ds
- the DataSource to use to get connectionssql
- the SQL to run
-
-
Method Details
-
newRowMapper
Implementation of protected abstract method. This invokes the subclass's implementation of the mapRow() method.- Specified by:
newRowMapper
in classSqlQuery<T>
- Parameters:
parameters
- the parameters to theexecute()
method, in case subclass is interested; may benull
if there were no parameters.context
- the contextual information passed to themapRow
callback method. The JDBC operation itself doesn't rely on this parameter, but it can be useful for creating the objects of the result list.- See Also:
-
mapRow
@Nullable protected abstract T mapRow(ResultSet rs, int rowNum, @Nullable Object[] parameters, @Nullable Map<?, ?> context) throws SQLExceptionSubclasses must implement this method to convert each row of the ResultSet into an object of the result type.- Parameters:
rs
- the ResultSet we're working throughrowNum
- row number (from 0) we're up toparameters
- to the query (passed to the execute() method). Subclasses are rarely interested in these. It can benull
if there are no parameters.context
- passed to the execute() method. It can benull
if no contextual information is need.- Returns:
- an object of the result type
- Throws:
SQLException
- if there's an error extracting data. Subclasses can simply not catch SQLExceptions, relying on the framework to clean up.
-