Class DataSourceInitializer
java.lang.Object
org.springframework.jdbc.datasource.init.DataSourceInitializer
- All Implemented Interfaces:
DisposableBean
,InitializingBean
- Since:
- 3.0
- Author:
- Dave Syer, Sam Brannen
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Use the database populator to set up the database.void
destroy()
Use the database cleaner to clean up the database.void
setDatabaseCleaner
(DatabasePopulator databaseCleaner) Set theDatabasePopulator
to execute during the bean destruction phase, cleaning up the database and leaving it in a known state for others.void
setDatabasePopulator
(DatabasePopulator databasePopulator) Set theDatabasePopulator
to execute during the bean initialization phase.void
setDataSource
(DataSource dataSource) TheDataSource
for the database to populate when this component is initialized and to clean up when this component is shut down.void
setEnabled
(boolean enabled) Flag to explicitly enable or disable the database populator and database cleaner.
-
Constructor Details
-
DataSourceInitializer
public DataSourceInitializer()
-
-
Method Details
-
setDataSource
TheDataSource
for the database to populate when this component is initialized and to clean up when this component is shut down.This property is mandatory with no default provided.
- Parameters:
dataSource
- the DataSource
-
setDatabasePopulator
Set theDatabasePopulator
to execute during the bean initialization phase.- Parameters:
databasePopulator
- theDatabasePopulator
to use during initialization- See Also:
-
setDatabaseCleaner
Set theDatabasePopulator
to execute during the bean destruction phase, cleaning up the database and leaving it in a known state for others.- Parameters:
databaseCleaner
- theDatabasePopulator
to use during destruction- See Also:
-
setEnabled
public void setEnabled(boolean enabled) Flag to explicitly enable or disable the database populator and database cleaner.- Parameters:
enabled
-true
if the database populator and database cleaner should be called on startup and shutdown, respectively
-
afterPropertiesSet
public void afterPropertiesSet()Use the database populator to set up the database.- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
destroy
public void destroy()Use the database cleaner to clean up the database.- Specified by:
destroy
in interfaceDisposableBean
-