interface EmbeddedDatabaseConfigurer
EmbeddedDatabaseConfigurer encapsulates the configuration required to create, connect to, and shut down a specific type of embedded database such as HSQL, H2, or Derby.
Author
Keith Donald
Author
Sam Brannen
Since
3.0
abstract fun configureConnectionProperties(properties: ConnectionProperties, databaseName: String): Unit
Configure the properties required to create and connect to the embedded database instance. |
|
abstract fun shutdown(dataSource: DataSource, databaseName: String): Unit
Shut down the embedded database instance that backs the supplied DataSource. |