Package io.ebean.service
Interface SpiContainer
public interface SpiContainer
Creates the Database implementations. This is used internally by the EbeanServerFactory and is not currently
exposed as public API.
-
Method Summary
Modifier and Type Method Description DatabasecreateServer(DatabaseConfig configuration)Create the EbeanServer for a given configuration.DatabasecreateServer(String name)Create an EbeanServer just using the name.voidshutdown()Shutdown any Ebean wide resources such as clustering.
-
Method Details
-
createServer
Create the EbeanServer for a given configuration.- Parameters:
configuration- The configuration information for this database.
-
createServer
Create an EbeanServer just using the name.In this case the dataSource parameters etc will be defined on the global avaje.properties file.
-
shutdown
void shutdown()Shutdown any Ebean wide resources such as clustering.
-