Trait

play.core.server

DefaultAkkaHttpServerComponents

Related Doc: package server

Permalink

trait DefaultAkkaHttpServerComponents extends AkkaHttpServerComponents with api.BuiltInComponents with NoHttpFiltersComponents

A convenient helper trait for constructing an AkkaHttpServer, for example:

val components = new DefaultAkkaHttpServerComponents {
  override lazy val router = {
    case GET(p"/") => Action(parse.json) { body =>
      Ok("Hello")
    }
  }
}
val server = components.server
Source
AkkaHttpServer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultAkkaHttpServerComponents
  2. NoHttpFiltersComponents
  3. BuiltInComponents
  4. I18nComponents
  5. AkkaHttpServerComponents
  6. ServerComponents
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def router: Router

    Permalink

    The router that's used to pass requests to the correct handler.

    The router that's used to pass requests to the correct handler.

    Definition Classes
    BuiltInComponents

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def Action: DefaultActionBuilder

    Permalink

    Alias method to defaultActionBuilder.

    Alias method to defaultActionBuilder. This just helps to keep the idiom of using Action when creating Routers using the built in components.

    returns

    the default action builder.

    Attributes
    protected
    Definition Classes
    BuiltInComponents
  5. lazy val actorSystem: ActorSystem

    Permalink
    Definition Classes
    BuiltInComponents
  6. lazy val application: api.Application

    Permalink
    Definition Classes
    BuiltInComponents
  7. lazy val applicationLifecycle: ApplicationLifecycle

    Permalink
    Definition Classes
    ServerComponents
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. lazy val configuration: Configuration

    Permalink
    Definition Classes
    ServerComponents
  11. lazy val cookieSigner: CookieSigner

    Permalink
    Definition Classes
    BuiltInComponents
  12. lazy val csrfTokenSigner: CSRFTokenSigner

    Permalink
    Definition Classes
    BuiltInComponents
  13. lazy val defaultActionBuilder: DefaultActionBuilder

    Permalink
    Definition Classes
    BuiltInComponents
  14. lazy val defaultBodyParser: BodyParser[AnyContent]

    Permalink
    Definition Classes
    BuiltInComponents
  15. def devContext: Option[DevContext]

    Permalink

    Helper to interact with the Play build environment.

    Helper to interact with the Play build environment. Only available in dev mode.

    Definition Classes
    BuiltInComponents
  16. lazy val environment: api.Environment

    Permalink
    Definition Classes
    ServerComponents
  17. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. implicit lazy val executionContext: ExecutionContext

    Permalink
    Definition Classes
    BuiltInComponents
  20. lazy val fileMimeTypes: FileMimeTypes

    Permalink
    Definition Classes
    BuiltInComponents
  21. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. lazy val httpConfiguration: HttpConfiguration

    Permalink
    Definition Classes
    BuiltInComponentsI18nComponents
  25. lazy val httpErrorHandler: HttpErrorHandler

    Permalink
    Definition Classes
    BuiltInComponents
  26. val httpFilters: Seq[EssentialFilter]

    Permalink
    Definition Classes
    NoHttpFiltersComponents
  27. lazy val httpRequestHandler: HttpRequestHandler

    Permalink
    Definition Classes
    BuiltInComponents
  28. lazy val injector: Injector

    Permalink

    The runtime Injector instance provided to the DefaultApplication.

    The runtime Injector instance provided to the DefaultApplication. This injector is set up to allow existing (deprecated) legacy APIs to function. It is not set up to support injecting arbitrary Play components.

    Definition Classes
    BuiltInComponents
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. lazy val javaContextComponents: JavaContextComponents

    Permalink
    Definition Classes
    BuiltInComponents
  31. lazy val langs: Langs

    Permalink
    Definition Classes
    I18nComponents
  32. implicit lazy val materializer: Materializer

    Permalink
    Definition Classes
    BuiltInComponents
  33. lazy val messagesApi: MessagesApi

    Permalink
    Definition Classes
    I18nComponents
  34. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. def parse: PlayBodyParsers

    Permalink

    Alias method to playBodyParsers.

    Alias method to playBodyParsers.

    Attributes
    protected
    Definition Classes
    BuiltInComponents
  38. lazy val playBodyParsers: PlayBodyParsers

    Permalink
    Definition Classes
    BuiltInComponents
  39. lazy val requestFactory: RequestFactory

    Permalink
    Definition Classes
    BuiltInComponents
  40. lazy val server: AkkaHttpServer

    Permalink
  41. lazy val serverConfig: ServerConfig

    Permalink
    Definition Classes
    ServerComponents
  42. def serverStopHook: () ⇒ Future[Unit]

    Permalink
    Definition Classes
    ServerComponents
  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  44. lazy val tempFileCreator: TemporaryFileCreator

    Permalink
    Definition Classes
    BuiltInComponents
  45. lazy val tempFileReaper: TemporaryFileReaper

    Permalink
    Definition Classes
    BuiltInComponents
  46. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def webCommands: WebCommands

    Permalink

    Commands that intercept requests before the rest of the application handles them.

    Commands that intercept requests before the rest of the application handles them. Used by Evolutions.

    Definition Classes
    BuiltInComponents

Deprecated Value Members

  1. def sourceMapper: Option[SourceMapper]

    Permalink

    Helper to locate the source code for the application.

    Helper to locate the source code for the application. Only available in dev mode.

    Definition Classes
    BuiltInComponents
    Annotations
    @deprecated
    Deprecated

    (Since version 2.7.0) Use devContext.map(_.sourceMapper) instead

Inherited from NoHttpFiltersComponents

Inherited from api.BuiltInComponents

Inherited from I18nComponents

Inherited from AkkaHttpServerComponents

Inherited from ServerComponents

Inherited from AnyRef

Inherited from Any

Ungrouped