|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jdbc.core.BeanPropertyRowMapper
Generic RowMapper implementation that converts a row into a new instance of the specified mapped target class. The mapped target class must be a top-level class and it must have a default or no-arg constructor. Column values are mapped based on matching the column name as obtained from result set metadata to public setters for the corresponding properties. The names are matched either directly or by transforming a name separating the parts with underscores to the same name using "camel" case. Mapping is provided for fields in the target class that are defined as any of the following types: String, byte, Byte, short, Short, int, Integer, long, Long, float, Float, double, Double, BigDecimal, boolean, Boolean and java.util.Date. To facilitate mapping between columns and fields that don't have matching names, try using column aliases in the SQL statement like "select fname as first_name from customer". Please note that this class is designed to provide convenience rather than high performance. For best performance consider using a custom RowMapper.
RowMapper
Constructor Summary | |
---|---|
BeanPropertyRowMapper()
Create a new BeanPropertyRowMapper. |
|
BeanPropertyRowMapper(Class mappedClass)
Create a new BeanPropertyRowMapper. |
Method Summary | |
---|---|
Object |
mapRow(ResultSet rs,
int rowNumber)
Extract the values for all columns in the current row. |
void |
setMappedClass(Class mappedClass)
Set the class that each row should be mapped to. |
static String |
underscoreName(String name)
Convert a name in camelCase to an underscored name in lower case. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BeanPropertyRowMapper()
setMappedClass(java.lang.Class)
public BeanPropertyRowMapper(Class mappedClass)
mappedClass
- the class that each row should be mapped to.Method Detail |
---|
public void setMappedClass(Class mappedClass)
mappedClass
- the class that each row should be mapped to.public Object mapRow(ResultSet rs, int rowNumber) throws SQLException
Utilizes public setters and result set metadata.
rs
- the ResultSet to map (pre-initialized for the current row)rowNumber
- the number of the current row
SQLException
- if a SQLException is encountered getting
column values (that is, there's no need to catch SQLException)ResultSetMetaData
public static String underscoreName(String name)
name
- The string containing original name
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |