Interface JdbcValuesMappingProducerProvider
-
- All Superinterfaces:
Serializable
,Service
- All Known Implementing Classes:
JdbcValuesMappingProducerProviderStandard
@Incubating public interface JdbcValuesMappingProducerProvider extends Service
Pluggable contract for providing customJdbcValuesMappingProducer
implementations. This is intended for use by hibernate-reactive to provide its custom implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JdbcValuesMappingProducer
buildMappingProducer(SelectStatement sqlAst, SessionFactoryImplementor sessionFactory)
Provide the JdbcValuesMappingProducer to use for the given SQL ASTResultSetMapping
buildResultSetMapping(String name, boolean isDynamic, SessionFactoryImplementor sessionFactory)
Provide a dynamically built JdbcValuesMappingProducer
-
-
-
Method Detail
-
buildMappingProducer
JdbcValuesMappingProducer buildMappingProducer(SelectStatement sqlAst, SessionFactoryImplementor sessionFactory)
Provide the JdbcValuesMappingProducer to use for the given SQL AST
-
buildResultSetMapping
ResultSetMapping buildResultSetMapping(String name, boolean isDynamic, SessionFactoryImplementor sessionFactory)
Provide a dynamically built JdbcValuesMappingProducer
-
-