Uses of Interface
org.jdbi.v3.core.config.JdbiConfig
-
Packages that use JdbiConfig Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.argument Theargumentclasses translate Java types into JDBC parameters.org.jdbi.v3.core.array Thearraypackage binds Java arrays and collections to SQL arrays, and handles mapping array result types back to Java arrays and collections.org.jdbi.v3.core.collector Thecollectorpackage reduces the mapped rows of the result set into a Stream Collector to produce the final aggregated result.org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.config.internal org.jdbi.v3.core.enums org.jdbi.v3.core.extension Theextensionclasses allow you to extendJdbi's functionality by declaring interface types that may attach toHandleinstances.org.jdbi.v3.core.internal Utility classes used internally by Jdbi.org.jdbi.v3.core.mapper mappers take the JDBC ResultSet and produce Java results.org.jdbi.v3.core.mapper.freebuilder org.jdbi.v3.core.mapper.immutables org.jdbi.v3.core.mapper.reflect mapper.reflectprovides RowMappers that reflectively construct result types using techniques like constructor injection or JavaBeans setters.org.jdbi.v3.core.mapper.reflect.internal org.jdbi.v3.core.qualifier org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.core.transaction Thetransactionpackage implements the strategyJdbiuses to open and close transactions.org.jdbi.v3.freemarker freemarkerprovides advanced string template processing.org.jdbi.v3.gson2 org.jdbi.v3.jackson2 org.jdbi.v3.json org.jdbi.v3.postgres Thepostgresplugin provides improved support forjava.time,hstore,uuid, andenumtypes when configured with a recent Postgres database server.org.jdbi.v3.sqlobject SQL Objectsorg.jdbi.v3.sqlobject.customizer Thesqlobject.customizerpackage provides annotations that customize the execution of a statement.org.jdbi.v3.sqlobject.statement.internal org.jdbi.v3.stringtemplate4 stringtemplate4provides advanced string template processing thatJdbican drive with the statement's bound parameters and context to drive statement generation that may need to bind variable number of parameters or other advanced use cases.org.jdbi.v3.vavr vavris a functional programming library for the JVM. -
-
Uses of JdbiConfig in org.jdbi.v3.core
Classes in org.jdbi.v3.core that implement JdbiConfig Modifier and Type Class Description classHandlesConfiguration class for handles. -
Uses of JdbiConfig in org.jdbi.v3.core.argument
Classes in org.jdbi.v3.core.argument that implement JdbiConfig Modifier and Type Class Description classArgumentsA registry for ArgumentFactory instances. -
Uses of JdbiConfig in org.jdbi.v3.core.array
Classes in org.jdbi.v3.core.array that implement JdbiConfig Modifier and Type Class Description classSqlArrayTypesConfiguration class for SQL array binding and mapping. -
Uses of JdbiConfig in org.jdbi.v3.core.collector
Classes in org.jdbi.v3.core.collector that implement JdbiConfig Modifier and Type Class Description classJdbiCollectorsRegistry of collector factories. -
Uses of JdbiConfig in org.jdbi.v3.core.config
Classes in org.jdbi.v3.core.config with type parameters of type JdbiConfig Modifier and Type Class Description classConfiguringPlugin<C extends JdbiConfig<C>>interfaceJdbiConfig<This extends JdbiConfig<This>>Interface for classes that hold configuration.Fields in org.jdbi.v3.core.config with type parameters of type JdbiConfig Modifier and Type Field Description private java.util.Map<java.lang.Class<? extends JdbiConfig<?>>,java.util.function.Function<ConfigRegistry,JdbiConfig<?>>>ConfigRegistry. configFactoriesprivate java.util.Map<java.lang.Class<? extends JdbiConfig<?>>,java.util.function.Function<ConfigRegistry,JdbiConfig<?>>>ConfigRegistry. configFactoriesprivate java.util.Map<java.lang.Class<? extends JdbiConfig<?>>,JdbiConfig<?>>ConfigRegistry. configsprivate java.util.Map<java.lang.Class<? extends JdbiConfig<?>>,JdbiConfig<?>>ConfigRegistry. configsMethods in org.jdbi.v3.core.config with type parameters of type JdbiConfig Modifier and Type Method Description default <C extends JdbiConfig<C>>
ThisConfigurable. configure(java.lang.Class<C> configClass, java.util.function.Consumer<C> configurer)Passes the configuration object of the given type to the configurer, then returns this object.<C extends JdbiConfig<C>>
CConfigRegistry. get(java.lang.Class<C> configClass)Returns this registry's instance of the given config class.default <C extends JdbiConfig<C>>
CConfigurable. getConfig(java.lang.Class<C> configClass)Gets the configuration object of the given type, associated with this object.static <C extends JdbiConfig<C>>
ConfiguringPlugin<C>ConfiguringPlugin. of(java.lang.Class<C> configClass, java.util.function.Consumer<C> configurer)Methods in org.jdbi.v3.core.config that return types with arguments of type JdbiConfig Modifier and Type Method Description private java.util.function.Function<ConfigRegistry,JdbiConfig<?>>ConfigRegistry. configFactory(java.lang.Class<? extends JdbiConfig<?>> configClass)Method parameters in org.jdbi.v3.core.config with type arguments of type JdbiConfig Modifier and Type Method Description private java.util.function.Function<ConfigRegistry,JdbiConfig<?>>ConfigRegistry. configFactory(java.lang.Class<? extends JdbiConfig<?>> configClass) -
Uses of JdbiConfig in org.jdbi.v3.core.config.internal
Classes in org.jdbi.v3.core.config.internal that implement JdbiConfig Modifier and Type Class Description classConfigCachesHold metadata caches which maps various JVM constants into pre-parsed forms. -
Uses of JdbiConfig in org.jdbi.v3.core.enums
Classes in org.jdbi.v3.core.enums that implement JdbiConfig Modifier and Type Class Description classEnumsConfiguration for behavior related toEnums. -
Uses of JdbiConfig in org.jdbi.v3.core.extension
Classes in org.jdbi.v3.core.extension that implement JdbiConfig Modifier and Type Class Description classExtensionsConfiguration class for definingJdbiextensions viaExtensionFactoryinstances. -
Uses of JdbiConfig in org.jdbi.v3.core.internal
Classes in org.jdbi.v3.core.internal that implement JdbiConfig Modifier and Type Class Description classEnumStrategiesclassOnDemandExtensions -
Uses of JdbiConfig in org.jdbi.v3.core.mapper
Classes in org.jdbi.v3.core.mapper that implement JdbiConfig Modifier and Type Class Description classColumnMappersConfiguration registry forColumnMapperFactoryinstances.classMapEntryMappersConfiguration class for MapEntryMapper.classMapMappersclassMappersConfiguration class for obtaining row or column mappers.classRowMappersConfiguration registry forRowMapperFactoryinstances. -
Uses of JdbiConfig in org.jdbi.v3.core.mapper.freebuilder
Classes in org.jdbi.v3.core.mapper.freebuilder that implement JdbiConfig Modifier and Type Class Description classJdbiFreeBuildersConfigures support for an FreeBuilder generatedBuilder)value type. -
Uses of JdbiConfig in org.jdbi.v3.core.mapper.immutables
Classes in org.jdbi.v3.core.mapper.immutables that implement JdbiConfig Modifier and Type Class Description classJdbiImmutables -
Uses of JdbiConfig in org.jdbi.v3.core.mapper.reflect
Classes in org.jdbi.v3.core.mapper.reflect that implement JdbiConfig Modifier and Type Class Description classReflectionMappersConfiguration class for reflective mappers. -
Uses of JdbiConfig in org.jdbi.v3.core.mapper.reflect.internal
Classes in org.jdbi.v3.core.mapper.reflect.internal that implement JdbiConfig Modifier and Type Class Description classPojoTypes -
Uses of JdbiConfig in org.jdbi.v3.core.qualifier
Classes in org.jdbi.v3.core.qualifier that implement JdbiConfig Modifier and Type Class Description classQualifiersUtility class for type qualifiers supported by Jdbi core. -
Uses of JdbiConfig in org.jdbi.v3.core.result
Classes in org.jdbi.v3.core.result that implement JdbiConfig Modifier and Type Class Description classResultProducersCommonly used ResultProducer implementations. -
Uses of JdbiConfig in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement JdbiConfig Modifier and Type Class Description classSqlStatementsConfiguration holder forSqlStatements.classStatementExceptionsConfiguration forStatementExceptionand subclasses behavior.Methods in org.jdbi.v3.core.statement with type parameters of type JdbiConfig Modifier and Type Method Description <C extends JdbiConfig<C>>
CStatementContext. getConfig(java.lang.Class<C> configClass)Gets the configuration object of the given type, associated with this context. -
Uses of JdbiConfig in org.jdbi.v3.core.transaction
Classes in org.jdbi.v3.core.transaction that implement JdbiConfig Modifier and Type Class Description static classSerializableTransactionRunner.ConfigurationConfiguration for serializable transaction runner. -
Uses of JdbiConfig in org.jdbi.v3.freemarker
Classes in org.jdbi.v3.freemarker that implement JdbiConfig Modifier and Type Class Description classFreemarkerConfig -
Uses of JdbiConfig in org.jdbi.v3.gson2
Classes in org.jdbi.v3.gson2 that implement JdbiConfig Modifier and Type Class Description classGson2ConfigConfiguration class for Gson 2 integration. -
Uses of JdbiConfig in org.jdbi.v3.jackson2
Classes in org.jdbi.v3.jackson2 that implement JdbiConfig Modifier and Type Class Description classJackson2ConfigConfiguration class for Jackson 2 integration. -
Uses of JdbiConfig in org.jdbi.v3.json
Classes in org.jdbi.v3.json that implement JdbiConfig Modifier and Type Class Description classJsonConfig -
Uses of JdbiConfig in org.jdbi.v3.postgres
Classes in org.jdbi.v3.postgres that implement JdbiConfig Modifier and Type Class Description classPostgresTypesHandler for PostgreSQL custom types. -
Uses of JdbiConfig in org.jdbi.v3.sqlobject
Classes in org.jdbi.v3.sqlobject that implement JdbiConfig Modifier and Type Class Description classHandlerDecoratorsDeprecated.UseExtensionHandlerCustomizerinstances which are returned directly from theExtensionFactory.getExtensionHandlerCustomizers(ConfigRegistry).classHandlersDeprecated.UseExtensionHandlerFactoryinstances that are returned from theExtensionFactory.getExtensionHandlerFactories(ConfigRegistry)method.classSqlObjectsConfiguration class for SQL objects. -
Uses of JdbiConfig in org.jdbi.v3.sqlobject.customizer
Classes in org.jdbi.v3.sqlobject.customizer that implement JdbiConfig Modifier and Type Class Description classTimestampedConfigConfiguration forTimestamped. -
Uses of JdbiConfig in org.jdbi.v3.sqlobject.statement.internal
Classes in org.jdbi.v3.sqlobject.statement.internal that implement JdbiConfig Modifier and Type Class Description classSqlObjectStatementConfiguration -
Uses of JdbiConfig in org.jdbi.v3.stringtemplate4
Classes in org.jdbi.v3.stringtemplate4 that implement JdbiConfig Modifier and Type Class Description classStringTemplatesConfiguration options forStringTemplateEngine. -
Uses of JdbiConfig in org.jdbi.v3.vavr
Classes in org.jdbi.v3.vavr that implement JdbiConfig Modifier and Type Class Description classTupleMappersMappers similar toMapEntryMappersbut map entries in vavr are in fact of typeTuple2.
-