diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/EmbeddedDatabaseFactory.java b/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/EmbeddedDatabaseFactory.java index 61031f3dd6e744b2afac90913460b44a324a14c2..8cef3e1d972b3998a2d5494c2c0bf4b4233d72ac 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/EmbeddedDatabaseFactory.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/EmbeddedDatabaseFactory.java @@ -30,16 +30,22 @@ import org.springframework.jdbc.datasource.init.DatabasePopulatorUtils; import org.springframework.util.Assert; /** - * Creates a {@link EmbeddedDatabase} instance. Callers are guaranteed that + * Creates an {@link EmbeddedDatabase} instance. Callers are guaranteed that * the returned database has been fully initialized and populated. * - *

Can be configured:
- * Call {@link #setDatabaseName(String)} to change the name of the database.
- * Call {@link #setDatabaseType(EmbeddedDatabaseType)} to set the database type if you wish to use one of the supported types.
- * Call {@link #setDatabaseConfigurer(EmbeddedDatabaseConfigurer)} to configure support for your own embedded database type.
- * Call {@link #setDatabasePopulator(DatabasePopulator)} to change the algorithm used to populate the database.
- * Call {@link #setDataSourceFactory(DataSourceFactory)} to change the type of DataSource used to connect to the database.
- * Call {@link #getDatabase()} to get the {@link EmbeddedDatabase} instance.
+ *

Can be configured: + *

* * @author Keith Donald * @author Juergen Hoeller