Uses of Class
org.springframework.data.relational.domain.RowDocument
Package
Description
JDBC-specific conversion classes.
R2DBC-specific conversion and converter implementations.
Core domain types around DatabaseClient.
-
Uses of RowDocument in org.springframework.data.jdbc.core.convert
Modifier and TypeMethodDescriptiondefault <R> R
JdbcConverter.readAndResolve
(Class<R> type, RowDocument source) Read aRowDocument
into the requestedaggregate type
and resolve references by looking these up fromRelationResolver
.default <R> R
JdbcConverter.readAndResolve
(Class<R> type, RowDocument source, Identifier identifier) Read aRowDocument
into the requestedaggregate type
and resolve references by looking these up fromRelationResolver
.<R> R
JdbcConverter.readAndResolve
(TypeInformation<R> type, RowDocument source, Identifier identifier) Read aRowDocument
into the requestedaggregate type
and resolve references by looking these up fromRelationResolver
.<R> R
MappingJdbcConverter.readAndResolve
(TypeInformation<R> type, RowDocument source, Identifier identifier) -
Uses of RowDocument in org.springframework.data.r2dbc.convert
Modifier and TypeMethodDescriptionMappingR2dbcConverter.toRowDocument
(Class<?> type, io.r2dbc.spi.Readable row, Iterable<? extends io.r2dbc.spi.ReadableMetadata> metadata) R2dbcConverter.toRowDocument
(Class<?> type, io.r2dbc.spi.Readable row, Iterable<? extends io.r2dbc.spi.ReadableMetadata> metadata) Create a flatRowDocument
from a singleRow or Stored Procedure output
. -
Uses of RowDocument in org.springframework.data.r2dbc.core
Modifier and TypeMethodDescriptionDefaultReactiveDataAccessStrategy.toRowDocument
(Class<?> type, io.r2dbc.spi.Readable row, Iterable<? extends io.r2dbc.spi.ReadableMetadata> metadata) ReactiveDataAccessStrategy.toRowDocument
(Class<?> type, io.r2dbc.spi.Readable row, Iterable<? extends io.r2dbc.spi.ReadableMetadata> metadata) Deprecated.Create a flatRowDocument
from a singleRow or Stored Procedure output
. -
Uses of RowDocument in org.springframework.data.relational.core.conversion
Modifier and TypeMethodDescriptionprotected <R> R
MappingRelationalConverter.doReadProjection
(MappingRelationalConverter.ConversionContext context, RowDocument document, EntityProjection<R, ?> projection) <R> R
MappingRelationalConverter.project
(EntityProjection<R, ?> projection, RowDocument document) <R> R
RelationalConverter.project
(EntityProjection<R, ?> descriptor, RowDocument document) Apply a projection toRowDocument
and return the projection return typeR
.void
RowDocumentAccessor.putAll
(RowDocument source) Copies all mappings from the givenRowDocument
to the underlying targetRowDocument
.<R> R
MappingRelationalConverter.read
(Class<R> type, RowDocument source) Read aRowDocument
into the requestedaggregate type
.protected <S> S
MappingRelationalConverter.read
(TypeInformation<S> type, RowDocument source) <R> R
RelationalConverter.read
(Class<R> type, RowDocument source) Read aRowDocument
into the requestedaggregate type
.protected <S> S
MappingRelationalConverter.readAggregate
(MappingRelationalConverter.ConversionContext context, RowDocument document, TypeInformation<? extends S> typeHint) Conversion method to materialize an object from adocument
.ModifierConstructorDescriptionprotected
DefaultConversionContext
(RelationalConverter sourceConverter, CustomConversions customConversions, ObjectPath objectPath, MappingRelationalConverter.DefaultConversionContext.ContainerValueConverter<RowDocument> documentConverter, MappingRelationalConverter.DefaultConversionContext.ContainerValueConverter<Collection<?>> collectionConverter, MappingRelationalConverter.DefaultConversionContext.ContainerValueConverter<Map<?, ?>> mapConverter, MappingRelationalConverter.DefaultConversionContext.ValueConverter<Object> elementConverter) -
Uses of RowDocument in org.springframework.data.relational.domain
Modifier and TypeMethodDescriptionAppends a new entry (or overwrites an existing value atkey
).RowDocument.getDocument
(String key) Retrieve the value atkey
asRowDocument
.static RowDocument
Factory method to create a RowDocument from a field and value.