mapper.reflect provides RowMappers that reflectively
construct result types using techniques like constructor injection
or JavaBeans setters.See: Description
| Interface | Description |
|---|---|
| ColumnNameMatcher |
Strategy for matching SQL column names to Java property, field, or parameter names.
|
| Class | Description |
|---|---|
| BeanMapper<T> |
A row mapper which maps the columns in a statement into a JavaBean.
|
| CaseInsensitiveColumnNameMatcher |
Matches column names with identical java names, ignoring case.
|
| ConstructorMapper<T> |
A row mapper which maps the fields in a result set into a constructor.
|
| FieldMapper<T> |
A row mapper which maps the columns in a statement into an object, using reflection
to set fields on the object.
|
| JdbiConstructors |
Utilities for
JdbiConstructor annotation. |
| ReflectionMappers |
Configuration class for reflective mappers.
|
| ReflectionMapperUtil |
Utilities for reflective mappers.
|
| SnakeCaseColumnNameMatcher |
Matches snake case column names to java camel case names, ignoring case.
|
| Annotation Type | Description |
|---|---|
| ColumnName |
Specify the mapping name for a property or parameter explicitly.
|
| JdbiConstructor |
Indicate to
ConstructorMapper and other reflective mappers
how to construct an instance. |
mapper.reflect provides RowMappers that reflectively
construct result types using techniques like constructor injection
or JavaBeans setters.
Copyright © 2019. All rights reserved.