Package | Description |
---|---|
org.springframework.jdbc.datasource.embedded |
Provides extensible support for creating embedded database instances.
|
Class and Description |
---|
ConnectionProperties
ConnectionProperties serves as a simple data container that allows
essential JDBC connection properties to be configured consistently,
independent of the actual DataSource
implementation. |
DataSourceFactory
DataSourceFactory encapsulates the creation of a particular
DataSource implementation such as a non-pooling
SimpleDriverDataSource
or a HikariCP pool setup in the shape of a HikariDataSource . |
EmbeddedDatabase
EmbeddedDatabase serves as a handle to an embedded database instance. |
EmbeddedDatabaseBuilder
A builder that provides a convenient API for constructing an embedded database.
|
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. |
EmbeddedDatabaseFactory
Factory for creating an
EmbeddedDatabase instance. |
EmbeddedDatabaseType
A supported embedded database type.
|