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.
-
ClassDescriptionA registry of
JdbiConfig
instances by type.Configurable<This>A type with access to access and modify arbitrary Jdbi configuration.JdbiCache<K,V> Simple cache interface.Hold metadata caches which maps various JVM constants into pre-parsed forms.JdbiConfig<This extends JdbiConfig<This>>Interface for classes that hold configuration.