The application path
The application classloader
Additional configuration
A partial function of method name and path to a handler for handling the request
The default ActorSystem used by the application.
The default ActorSystem used by the application.
Additional configuration
The application classloader
The application classloader
The HTTP error handler
The HTTP error handler
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.
Note that it is up to you to manage the files in the application root path in production. By default, there will be nothing available in the application root path.
For example, to retrieve some deployment specific data file:
val myDataFile = application.getExistingFile("data/data.xml")
the relative path of the file to fetch
an existing file
Retrieves a file relative to the application root path.
Retrieves a file relative to the application root path.
Note that it is up to you to manage the files in the application root path in production. By default, there will be nothing available in the application root path.
For example, to retrieve some deployment specific data file:
val myDataFile = application.getFile("data/data.xml")
relative path of the file to fetch
a file instance; it is not guaranteed that the file exists
Get the injector for this application.
Get the injector for this application.
The injector.
The default Materializer used by the application.
The default Materializer used by the application.
Dev
, Prod
or Test
Dev
, Prod
or Test
The application path
The application path
The HTTP request handler
The HTTP request handler
Scans the application classloader to retrieve a resource.
Scans the application classloader to retrieve a resource.
The conf directory is included on the classpath, so this may be used to look up resources, relative to the conf directory.
For example, to retrieve the conf/logger.xml configuration file:
val maybeConf = application.resource("logger.xml")
the absolute name of the resource (from the classpath root)
the resource URL, if found
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.
The conf directory is included on the classpath, so this may be used to look up resources, relative to the conf directory.
For example, to retrieve the conf/logger.xml configuration file:
val maybeConf = application.resourceAsStream("logger.xml")
the absolute name of the resource (from the classpath root)
a stream, if found
Stop the application.
Stop the application. The returned future will be redeemed when all stop hooks have been run.
A partial function of method name and path to a handler for handling the request
(Since version 2.5.0) Use dependency injection
The router used by this application.
The router used by this application.
(Since version 2.4.0) Either use HttpRequestHandler, or have the router injected
(Since version 2.5.0) Use dependency injection
A Fake application.
The application path
The application classloader
Additional configuration
A partial function of method name and path to a handler for handling the request
(Since version 2.5.0) Use GuiceApplicationBuilder instead.