Package org.jdbi.v3.core.config
package org.jdbi.v3.core.config
The config
classes define a configuration registry starting from
each Jdbi
instance. When a Handle
or other configurable
object is created, it clones the parent's configuration at time of creation.
Modifying configuration will affect future created children but not existing
ones. In general, it is preferable to configure Jdbi
during
application initialization and then only configure specific statements
further individually if necessary.
-
ClassDescriptionCustomizes a given
ConfigRegistry
.A registry ofJdbiConfig
instances by type.Configurable<This>A type with access to access and modify arbitrary Jdbi configuration.ConfiguringPlugin<C extends JdbiConfig<C>>JdbiConfig<This extends JdbiConfig<This>>Interface for classes that hold configuration.