Class BeanPropertyRowMapper<T>
- Type Parameters:
T- the result type
- Direct Known Subclasses:
DataClassRowMapper
Function implementation that converts an R2DBC Readable
(a Row or OutParameters) into a new instance of the specified mapped
target class. The mapped target class must be a top-level class or static
nested class, and it must have a default or no-arg constructor.
Readable component values are mapped based on matching the column
name (as obtained from R2DBC meta-data) to public setters in the target class
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 properties in the target class for many common types —
for example: String, boolean, Boolean, byte, Byte, short, Short, int, Integer,
long, Long, float, Float, double, Double, BigDecimal, java.util.Date, etc.
To facilitate mapping between columns and properties that don't have matching
names, try using column aliases in the SQL statement like
"select fname as first_name from customer", where first_name
can be mapped to a setFirstName(String) method in the target class.
For a NULL value read from the database, an attempt will be made to
call the corresponding setter method with null, but in the case of
Java primitives this will result in a TypeMismatchException by default.
To ignore NULL database values for all primitive properties in the
target class, set the primitivesDefaultedForNullValue flag to
true. See setPrimitivesDefaultedForNullValue(boolean) for
details.
If you need to map to a target class which has a data class constructor
— for example, a Java record or a Kotlin data class —
use DataClassRowMapper instead.
Please note that this class is designed to provide convenience rather than high performance. For best performance, consider using a custom mapping function implementation.
- Since:
- 6.1
- Author:
- Simon Baslé, Thomas Risberg, Juergen Hoeller, Sam Brannen
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBeanPropertyRowMapper(Class<T> mappedClass) Create a newBeanPropertyRowMapper, accepting unpopulated properties in the target bean.BeanPropertyRowMapper(Class<T> mappedClass, boolean checkFullyPopulated) Create a newBeanPropertyRowMapper. -
Method Summary
Modifier and TypeMethodDescriptionExtract the values for the currentReadable: all columns in case of aRowor all parameters in case of anOutParameters.protected TconstructMappedInstance(Readable readable, List<? extends ReadableMetadata> itemMetadatas, TypeConverter tc) Construct an instance of the mapped class for the currentReadable.Return aConversionServicefor binding R2DBC values to bean properties, ornullif none.protected ObjectgetItemValue(Readable readable, int itemIndex, PropertyDescriptor pd) Retrieve an R2DBC object value for the specified item index (a column or an out-parameter).protected ObjectgetItemValue(Readable readable, int itemIndex, Class<?> paramType) Retrieve an R2DBC object value for the specified item index (a column or an out-parameter).Get the class that we are mapping to.protected voidInitialize the given BeanWrapper to be used for row mapping or outParameters mapping.protected voidinitialize(Class<T> mappedClass) Initialize the mapping meta-data for the given class.booleanReturn whether we're strictly validating that all bean properties have been mapped from corresponding database columns or out-parameters.booleanGet the value of theprimitivesDefaultedForNullValueflag.protected StringlowerCaseName(String name) Convert the given name to lower case.static <T> BeanPropertyRowMapper<T>newInstance(Class<T> mappedClass) Static factory method to create a newBeanPropertyRowMapper.static <T> BeanPropertyRowMapper<T>newInstance(Class<T> mappedClass, ConversionService conversionService) Static factory method to create a newBeanPropertyRowMapper.voidsetCheckFullyPopulated(boolean checkFullyPopulated) Set whether we're strictly validating that all bean properties have been mapped from corresponding database columns or out-parameters.voidsetConversionService(ConversionService conversionService) Set aConversionServicefor binding R2DBC values to bean properties, ornullfor none.voidsetPrimitivesDefaultedForNullValue(boolean primitivesDefaultedForNullValue) Set whether aNULLdatabase column or out-parameter value should be ignored when mapping to a corresponding primitive property in the target class.protected voidsuppressProperty(String propertyName) Remove the specified property from the mapped properties.protected StringunderscoreName(String name) Convert a name in camelCase to an underscored name in lower case.
-
Field Details
-
logger
Logger available to subclasses.
-
-
Constructor Details
-
BeanPropertyRowMapper
Create a newBeanPropertyRowMapper, accepting unpopulated properties in the target bean.- Parameters:
mappedClass- the class that each row/outParameters should be mapped to
-
BeanPropertyRowMapper
Create a newBeanPropertyRowMapper.- Parameters:
mappedClass- the class that each row should be mapped tocheckFullyPopulated- whether we're strictly validating that all bean properties have been mapped from corresponding database columns or out-parameters
-
-
Method Details
-
getMappedClass
Get the class that we are mapping to. -
setCheckFullyPopulated
public void setCheckFullyPopulated(boolean checkFullyPopulated) Set whether we're strictly validating that all bean properties have been mapped from corresponding database columns or out-parameters.Default is
false, accepting unpopulated properties in the target bean. -
isCheckFullyPopulated
public boolean isCheckFullyPopulated()Return whether we're strictly validating that all bean properties have been mapped from corresponding database columns or out-parameters. -
setPrimitivesDefaultedForNullValue
public void setPrimitivesDefaultedForNullValue(boolean primitivesDefaultedForNullValue) Set whether aNULLdatabase column or out-parameter value should be ignored when mapping to a corresponding primitive property in the target class.Default is
false, throwing an exception when nulls are mapped to Java primitives.If this flag is set to
trueand you use an ignored primitive property value from the mapped bean to update the database, the value in the database will be changed fromNULLto the current value of that primitive property. That value may be the property's initial value (potentially Java's default value for the respective primitive type), or it may be some other value set for the property in the default constructor (or initialization block) or as a side effect of setting some other property in the mapped bean. -
isPrimitivesDefaultedForNullValue
public boolean isPrimitivesDefaultedForNullValue()Get the value of theprimitivesDefaultedForNullValueflag. -
setConversionService
Set aConversionServicefor binding R2DBC values to bean properties, ornullfor none.Default is a
DefaultConversionService. This provides support forjava.timeconversion and other special types.- See Also:
-
getConversionService
Return aConversionServicefor binding R2DBC values to bean properties, ornullif none. -
initialize
Initialize the mapping meta-data for the given class.- Parameters:
mappedClass- the mapped class
-
suppressProperty
Remove the specified property from the mapped properties.- Parameters:
propertyName- the property name (as used by property descriptors)
-
lowerCaseName
Convert the given name to lower case.By default, conversions will happen within the US locale.
- Parameters:
name- the original name- Returns:
- the converted name
-
underscoreName
Convert a name in camelCase to an underscored name in lower case.Any upper case letters are converted to lower case with a preceding underscore.
- Parameters:
name- the original name- Returns:
- the converted name
- See Also:
-
apply
Extract the values for the currentReadable: all columns in case of aRowor all parameters in case of anOutParameters.Utilizes public setters and derives meta-data from the concrete type.
- Specified by:
applyin interfaceFunction<Readable,T> - Throws:
IllegalArgumentException- in case the concrete type is neitherRownorOutParameters- See Also:
-
constructMappedInstance
protected T constructMappedInstance(Readable readable, List<? extends ReadableMetadata> itemMetadatas, TypeConverter tc) Construct an instance of the mapped class for the currentReadable.The default implementation simply instantiates the mapped class. Can be overridden in subclasses.
- Parameters:
readable- theReadablebeing mapped (aRoworOutParameters)itemMetadatas- the list of itemReadableMetadata(eitherColumnMetadataorOutParameterMetadata)tc- a TypeConverter with this row mapper's conversion service- Returns:
- a corresponding instance of the mapped class
-
initBeanWrapper
Initialize the given BeanWrapper to be used for row mapping or outParameters mapping.To be called for each Readable.
The default implementation applies the configured
ConversionService, if any. Can be overridden in subclasses.- Parameters:
bw- the BeanWrapper to initialize- See Also:
-
getItemValue
Retrieve an R2DBC object value for the specified item index (a column or an out-parameter).The default implementation delegates to
getItemValue(Readable, int, Class).- Parameters:
readable- is theRoworOutParametersholding the dataitemIndex- is the column index or out-parameter indexpd- the bean property that each result object is expected to match- Returns:
- the Object value
- See Also:
-
getItemValue
Retrieve an R2DBC object value for the specified item index (a column or an out-parameter).The default implementation calls
Readable.get(int, Class)then falls back toReadable.get(int)in case of an exception. Subclasses may override this to check specific value types upfront, or to post-process values returned fromget.- Parameters:
readable- is theRoworOutParametersholding the dataitemIndex- is the column index or out-parameter indexparamType- the target parameter type- Returns:
- the Object value
- See Also:
-
newInstance
Static factory method to create a newBeanPropertyRowMapper.- Parameters:
mappedClass- the class that each row should be mapped to- See Also:
-
newInstance
public static <T> BeanPropertyRowMapper<T> newInstance(Class<T> mappedClass, @Nullable ConversionService conversionService) Static factory method to create a newBeanPropertyRowMapper.- Parameters:
mappedClass- the class that each row should be mapped toconversionService- theConversionServicefor binding R2DBC values to bean properties, ornullfor none- See Also:
-