object Configuration extends Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Configuration
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply(data: (String, Any)*): Configuration
Create a new Configuration from the given key-value pairs.
- def empty: Configuration
Returns an empty Configuration object.
- def from(data: Map[String, Any]): Configuration
Create a new Configuration from the data passed as a Map.
- def load(environment: Environment): Configuration
Load a new Configuration from the Environment.
- def load(environment: Environment, devSettings: Map[String, AnyRef]): Configuration
Load a new Configuration from the Environment.
- def load(classLoader: ClassLoader, properties: Properties, directSettings: Map[String, AnyRef], allowMissingApplicationConf: Boolean): Configuration
- def reference: Configuration
Returns the reference configuration object.
This object provides a set of operations to create
Configuration
values.For example, to load a
Configuration
in a running application:The underlying implementation is provided by https://github.com/lightbend/config.