Package io.micronaut.configuration.jdbi
Interface JdbiCustomizer
-
public interface JdbiCustomizer
Allows custom actions to be performed on a jdbi instance. Customizers must be annotated with aNamed
annotation that matches the datasource name corresponding to the jdbi datasource to be customized.- Since:
- 1.4.0
- Author:
- Dan Maas
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
customize(Jdbi jdbi)
Performs custom configuration operations on the given Jdbi instance.
-
-
-
Method Detail
-
customize
void customize(Jdbi jdbi)
Performs custom configuration operations on the given Jdbi instance. See https://jdbi.org/apidocs/index.html?org/jdbi/v3/core/config/Configurable.html for available options- Parameters:
jdbi
- the Jdbi instance
-
-