play.api

DefaultApplication

class DefaultApplication extends Application with WithDefaultConfiguration with WithDefaultGlobal with WithDefaultPlugins

Source
Application.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DefaultApplication
  2. WithDefaultPlugins
  3. WithDefaultGlobal
  4. WithDefaultConfiguration
  5. Application
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DefaultApplication(path: File, classloader: ClassLoader, sources: Option[SourceMapper], mode: Mode.Mode)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val classloader: ClassLoader

    The application's classloader

    The application's classloader

    Definition Classes
    DefaultApplicationApplication
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def configuration: Configuration

    Definition Classes
    WithDefaultConfiguration
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def getExistingFile(relativePath: String): Option[File]

    Retrieves a file relative to the application root path.

    Retrieves a file relative to the application root path. This method returns an Option[File], using None if the file was not found.

    For example, to retrieve a configuration file:

    val myConf = application.getExistingFile("conf/myConf.yml")
    relativePath

    the relative path of the file to fetch

    returns

    an existing file

    Definition Classes
    Application
  15. def getFile(relativePath: String): File

    Retrieves a file relative to the application root path.

    Retrieves a file relative to the application root path.

    For example, to retrieve a configuration file:

    val myConf = application.getFile("conf/myConf.yml")
    relativePath

    relative path of the file to fetch

    returns

    a file instance; it is not guaranteed that the file exists

    Definition Classes
    Application
  16. def global: GlobalSettings

    Definition Classes
    WithDefaultGlobal
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. lazy val initialConfiguration: Configuration

    Attributes
    protected
    Definition Classes
    WithDefaultConfiguration
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. val mode: Mode.Mode

    Dev, Prod or Test

    Dev, Prod or Test

    Definition Classes
    DefaultApplicationApplication
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. val path: File

    The absolute path hosting this application, mainly used by the getFile(path) helper method

    The absolute path hosting this application, mainly used by the getFile(path) helper method

    Definition Classes
    DefaultApplicationApplication
  25. def plugin[T](implicit ct: ClassTag[T]): Option[T]

    Retrieves a plugin of type T.

    Retrieves a plugin of type T.

    For example, to retrieve the DBPlugin instance:

    val dbPlugin = application.plugin[DBPlugin].map(_.api).getOrElse(sys.error("problem with the plugin"))
    T

    the plugin type

    returns

    The plugin instance used by this application.

    Definition Classes
    Application
    Exceptions thrown
    Error

    if no plugins of type T are loaded by this application.

  26. def plugin[T](pluginClass: Class[T]): Option[T]

    Retrieves a plugin of type T.

    Retrieves a plugin of type T.

    For example, retrieving the DBPlugin instance:

    val dbPlugin = application.plugin(classOf[DBPlugin])
    T

    the plugin type

    pluginClass

    the plugin’s class

    returns

    the plugin instance, wrapped in an option, used by this application

    Definition Classes
    Application
    Exceptions thrown
    Error

    if no plugins of type T are loaded by this application

  27. lazy val plugins: Seq[Plugin]

    The plugins list used by this application.

    The plugins list used by this application.

    Plugin classes must extend play.api.Plugin and are automatically discovered by searching for all play.plugins files in the classpath.

    A play.plugins file contains a list of plugin classes to be loaded, and sorted by priority:

    100:play.api.i18n.MessagesPlugin
    200:play.api.db.DBPlugin
    250:play.api.cache.BasicCachePlugin
    300:play.db.ebean.EbeanPlugin
    400:play.db.jpa.JPAPlugin
    500:play.api.db.evolutions.EvolutionsPlugin
    1000:play.api.libs.akka.AkkaPlugin
    10000:play.api.GlobalPlugin
    Definition Classes
    WithDefaultPlugins
    See also

    play.api.Plugin

  28. def resource(name: String): Option[URL]

    Scans the application classloader to retrieve a resource.

    Scans the application classloader to retrieve a resource.

    For example, to retrieve a configuration file:

    val maybeConf = application.resource("conf/logger.xml")
    name

    the absolute name of the resource (from the classpath root)

    returns

    the resource URL, if found

    Definition Classes
    Application
  29. def resourceAsStream(name: String): Option[InputStream]

    Scans the application classloader to retrieve a resource’s contents as a stream.

    Scans the application classloader to retrieve a resource’s contents as a stream.

    For example, to retrieve a configuration file:

    val maybeConf = application.resourceAsStream("conf/logger.xml")
    name

    the absolute name of the resource (from the classpath root)

    returns

    a stream, if found

    Definition Classes
    Application
  30. lazy val routes: Option[core.Router.Routes]

    The router used by this application (if defined).

    The router used by this application (if defined).

    Definition Classes
    Application
  31. val sources: Option[SourceMapper]

    The SourceMapper used to retrieve source code displayed in error pages

    The SourceMapper used to retrieve source code displayed in error pages

    Definition Classes
    DefaultApplicationApplication
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from WithDefaultPlugins

Inherited from WithDefaultGlobal

Inherited from WithDefaultConfiguration

Inherited from Application

Inherited from AnyRef

Inherited from Any

Ungrouped