Uses of Interface
org.jdbi.v3.core.config.JdbiConfig
Packages that use JdbiConfig
Package
Description
The 'core' package hosts the top level interface into jdbi core.
The
argument
classes translate Java types into JDBC parameters.
The
array
package binds Java arrays and collections to SQL arrays, and
handles mapping array result types back to Java arrays and collections.
The
collector
package reduces the mapped rows of the result set
into a Stream Collector to produce the final aggregated result.
The
config
classes define a configuration registry starting from
each Jdbi
instance.
The
extension
classes allow you to extend Jdbi
's
functionality by declaring interface types that may attach to Handle
instances.mapper
s take the JDBC ResultSet and produce Java results.mapper.reflect
provides RowMappers that reflectively
construct result types using techniques like constructor injection
or JavaBeans setters.result
provides the streaming interface that reads rows from JDBC
and drives the mapper
and collector
processes to
produce results.
The
statement
package provides most of the Fluent API
to drive statement execution.
The
transaction
package implements the strategy
Jdbi
uses to open and close transactions.freemarker
provides advanced string template processing.
The
postgres
plugin provides improved support for
java.time
, hstore
, uuid
, and enum
types when configured with a recent Postgres database server.SQL Objects
The
sqlobject.customizer
package provides annotations
that customize the execution of a statement.JUnit 5 testing support.
vavr
is a functional programming library for the JVM.-
Uses of JdbiConfig in org.jdbi.v3.core
Classes in org.jdbi.v3.core that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.core.argument
Classes in org.jdbi.v3.core.argument that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.core.array
Classes in org.jdbi.v3.core.array that implement JdbiConfigModifier and TypeClassDescriptionclass
Configuration 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 -
Uses of JdbiConfig in org.jdbi.v3.core.config
Classes in org.jdbi.v3.core.config with type parameters of type JdbiConfigModifier and TypeClassDescriptionfinal class
ConfiguringPlugin<C extends JdbiConfig<C>>
interface
JdbiConfig<This extends JdbiConfig<This>>
Interface for classes that hold configuration.Classes in org.jdbi.v3.core.config that implement JdbiConfigModifier and TypeClassDescriptionfinal class
Hold metadata caches which maps various JVM constants into pre-parsed forms.Methods in org.jdbi.v3.core.config with type parameters of type JdbiConfigModifier and TypeMethodDescriptiondefault <C extends JdbiConfig<C>>
ThisPasses the configuration object of the given type to the configurer, then returns this object.<C extends JdbiConfig<C>>
CReturns this registry's instance of the given config class.default <C extends JdbiConfig<C>>
CGets the configuration object of the given type, associated with this object.static <C extends JdbiConfig<C>>
ConfiguringPlugin<C> -
Uses of JdbiConfig in org.jdbi.v3.core.enums
Classes in org.jdbi.v3.core.enums that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.core.extension
Classes in org.jdbi.v3.core.extension that implement JdbiConfigModifier and TypeClassDescriptionclass
Configuration class for definingJdbi
extensions viaExtensionFactory
instances. -
Uses of JdbiConfig in org.jdbi.v3.core.mapper
Classes in org.jdbi.v3.core.mapper that implement JdbiConfigModifier and TypeClassDescriptionclass
Configuration registry forColumnMapperFactory
instances.class
Configuration class for MapEntryMapper.class
class
Configuration class for obtaining row or column mappers.class
Configuration registry forRowMapperFactory
instances. -
Uses of JdbiConfig in org.jdbi.v3.core.mapper.freebuilder
Classes in org.jdbi.v3.core.mapper.freebuilder that implement JdbiConfigModifier and TypeClassDescriptionclass
Configures 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 JdbiConfigModifier and TypeClassDescriptionclass
-
Uses of JdbiConfig in org.jdbi.v3.core.mapper.reflect
Classes in org.jdbi.v3.core.mapper.reflect that implement JdbiConfigModifier and TypeClassDescriptionclass
Configuration class for reflective mappers. -
Uses of JdbiConfig in org.jdbi.v3.core.qualifier
Classes in org.jdbi.v3.core.qualifier that implement JdbiConfigModifier and TypeClassDescriptionclass
Utility 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 JdbiConfigModifier and TypeClassDescriptionclass
Commonly used ResultProducer implementations. -
Uses of JdbiConfig in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement JdbiConfigModifier and TypeClassDescriptionfinal class
Configuration holder forSqlStatement
s.class
Configuration forStatementException
and subclasses behavior.Methods in org.jdbi.v3.core.statement with type parameters of type JdbiConfigModifier and TypeMethodDescription<C extends JdbiConfig<C>>
CGets 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 JdbiConfigModifier and TypeClassDescriptionstatic class
Configuration for serializable transaction runner. -
Uses of JdbiConfig in org.jdbi.v3.freemarker
Classes in org.jdbi.v3.freemarker that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.gson2
Classes in org.jdbi.v3.gson2 that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.jackson2
Classes in org.jdbi.v3.jackson2 that implement JdbiConfigModifier and TypeClassDescriptionclass
Configuration class for Jackson 2 integration. -
Uses of JdbiConfig in org.jdbi.v3.json
Classes in org.jdbi.v3.json that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.moshi
Classes in org.jdbi.v3.moshi that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.postgres
Classes in org.jdbi.v3.postgres that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.sqlobject
Classes in org.jdbi.v3.sqlobject that implement JdbiConfigModifier and TypeClassDescriptionclass
Registry forhandler decorators
.class
Registry forhandler factories
, which producehandlers
for SQL object methods.class
Configuration class for SQL objects. -
Uses of JdbiConfig in org.jdbi.v3.sqlobject.customizer
Classes in org.jdbi.v3.sqlobject.customizer that implement JdbiConfig -
Uses of JdbiConfig in org.jdbi.v3.testing.junit5
Methods in org.jdbi.v3.testing.junit5 with type parameters of type JdbiConfigModifier and TypeMethodDescriptionfinal <C extends JdbiConfig<C>>
JdbiExtensionJdbiExtension.withConfig
(Class<C> configClass, Consumer<C> configurer) Set aJdbiConfig
parameter when creating theJdbi
instance. -
Uses of JdbiConfig in org.jdbi.v3.vavr
Classes in org.jdbi.v3.vavr that implement JdbiConfigModifier and TypeClassDescriptionclass
Mappers similar toMapEntryMappers
but map entries in vavr are in fact of typeTuple2
.