Class EmbeddedDatabaseConfigurerDelegate
java.lang.Object
org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseConfigurerDelegate
- All Implemented Interfaces:
- EmbeddedDatabaseConfigurer
An 
EmbeddedDatabaseConfigurer delegate that can be used to customize
 the embedded database.- Since:
- 6.2
- Author:
- Stephane Nicoll
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidconfigureConnectionProperties(ConnectionProperties properties, String databaseName) Configure the properties required to create and connect to the embedded database.voidshutdown(DataSource dataSource, String databaseName) Shut down the embedded database instance that backs the suppliedDataSource.
- 
Field Details- 
logger
 
- 
- 
Constructor Details- 
EmbeddedDatabaseConfigurerDelegate
 
- 
- 
Method Details- 
configureConnectionPropertiesDescription copied from interface:EmbeddedDatabaseConfigurerConfigure the properties required to create and connect to the embedded database.- Parameters:
- properties- connection properties to configure
- databaseName- the name of the embedded database
 
- 
shutdownDescription copied from interface:EmbeddedDatabaseConfigurerShut down the embedded database instance that backs the suppliedDataSource.- Specified by:
- shutdownin interface- EmbeddedDatabaseConfigurer
- Parameters:
- dataSource- the corresponding- DataSource
- databaseName- the name of the database being shut down
 
 
-