object Context extends Serializable

Source
ApplicationLoader.scala
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Context
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. 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

  1. 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