object Context extends Serializable
- Source
- ApplicationLoader.scala
- Alphabetic
- By Inheritance
- Context
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def create(environment: Environment, initialSettings: Map[String, AnyRef] = Map.empty[String, AnyRef], lifecycle: ApplicationLifecycle = new DefaultApplicationLifecycle(), devContext: Option[DevContext] = None): Context
Create an application loading context.
Create an application loading context.
Locates and loads the necessary configuration files for the application.
- environment
The application environment.
- initialSettings
The initial settings. These settings are merged with the settings from the loaded configuration files, and together form the initialConfiguration provided by the context. It is intended for use in dev mode, to allow the build system to pass additional configuration into the application.
- lifecycle
Used to register hooks that run when the application stops.
- devContext
If an application is loaded in dev mode then this additional context can be provided.
Deprecated Value Members
- def apply(environment: Environment, sourceMapper: Option[SourceMapper], webCommands: WebCommands, initialConfiguration: Configuration, lifecycle: ApplicationLifecycle): Context
- Annotations
- @deprecated
- Deprecated
(Since version 2.7.0) Context properties have changed; use the default Context apply method or Context.create instead