Packages

trait ApplicationProvider extends AnyRef

Provides information about a Play Application running inside a Play server.

Source
ApplicationProvider.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApplicationProvider
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def get: Try[api.Application]

    Get the application.

    Get the application. In dev mode this lazily loads the application.

    NOTE: This should be called once per request. Calling multiple times may result in multiple compilations.

Concrete Value Members

  1. def handleWebCommand(requestHeader: RequestHeader): Option[Result]

    Handle a request directly, without using the application.

Deprecated Value Members

  1. def current: Option[api.Application]

    Get the currently loaded application.

    Get the currently loaded application. May be empty in dev mode because of compile failure or before first load.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.13) Use ApplicationProvider.get instead