Interface RowMapperFactory
- All Known Implementing Classes:
BeanFactoryAwareRowMapperFactory, DefaultRowMapperFactory
public interface RowMapperFactory
Factory to create a
RowMapper for a given class.- Since:
- 4.0
- Author:
- Jens Schauder, Mikhail Polivakha
-
Method Summary
Modifier and TypeMethodDescriptionObtain aRowMapperbased on the expected return type passed in as an argument.default ResultSetExtractor<Object> getResultSetExtractor(String reference) Obtain aResultSetExtractorfrom some other source, typically aBeanFactory.getRowMapper(String reference) Obtain aRowMapperfrom some other source, typically aBeanFactory.
-
Method Details
-
create
-
getRowMapper
Obtain aRowMapperfrom some other source, typically aBeanFactory.- Parameters:
reference- must not benull.
-
getResultSetExtractor
Obtain aResultSetExtractorfrom some other source, typically aBeanFactory.- Parameters:
reference- must not benull.
-