Uses of Class
io.ebean.config.DatabaseConfig
-
Packages that use DatabaseConfig Package Description io.ebean io.ebean.cache Server Cache Serviceio.ebean.config Configuration settings for Database constructionio.ebean.event Persist and Query Event Controllers and Listenersio.ebean.plugin Provides a API for plugins.io.ebean.service -
-
Uses of DatabaseConfig in io.ebean
Methods in io.ebean with parameters of type DatabaseConfig Modifier and Type Method Description static Database
DatabaseFactory. create(DatabaseConfig config)
Create using the DatabaseConfig object to configure the database.static Database
DatabaseFactory. createWithContextClassLoader(DatabaseConfig config, ClassLoader classLoader)
Create using the DatabaseConfig additionally specifying a classLoader to use as the context class loader. -
Uses of DatabaseConfig in io.ebean.cache
Methods in io.ebean.cache with parameters of type DatabaseConfig Modifier and Type Method Description ServerCacheNotify
ServerCacheNotifyPlugin. create(DatabaseConfig config)
Create a ServerCacheNotify implementation given the server configuration.ServerCacheFactory
ServerCachePlugin. create(DatabaseConfig config, BackgroundExecutor executor)
Create the ServerCacheFactory given the server config and background executor service. -
Uses of DatabaseConfig in io.ebean.config
Subclasses of DatabaseConfig in io.ebean.config Modifier and Type Class Description class
ServerConfig
Deprecated.Methods in io.ebean.config with parameters of type DatabaseConfig Modifier and Type Method Description void
DatabaseConfigProvider. apply(DatabaseConfig config)
Apply the configuration to the DatabaseConfig.void
AutoConfigure. postConfigure(DatabaseConfig config)
Provide some configuration the DatabaseConfig prior to server creation but after properties have been applied.void
AutoConfigure. preConfigure(DatabaseConfig config)
Perform configuration for the DatabaseConfig prior to properties load. -
Uses of DatabaseConfig in io.ebean.event
Methods in io.ebean.event with parameters of type DatabaseConfig Modifier and Type Method Description void
ServerConfigStartup. onStart(DatabaseConfig config)
On starting configure the DatabaseConfig. -
Uses of DatabaseConfig in io.ebean.plugin
Methods in io.ebean.plugin that return DatabaseConfig Modifier and Type Method Description DatabaseConfig
SpiServer. getServerConfig()
Return the DatabaseConfig. -
Uses of DatabaseConfig in io.ebean.service
Methods in io.ebean.service with parameters of type DatabaseConfig Modifier and Type Method Description Database
SpiContainer. createServer(DatabaseConfig configuration)
Create the EbeanServer for a given configuration.
-