Package | Description |
---|---|
ratpack.config |
Provides the ability to access configuration data from a variety of sources, such as YAML, JSON,
properties files, system properties, and environment variables.
|
ratpack.server |
Objects used to start a ratpack application.
|
Modifier and Type | Method and Description |
---|---|
ConfigData |
ConfigDataSpec.build()
Builds the configuration data from this specification.
|
static ConfigData |
ConfigData.of(Action<? super ConfigDataSpec> definition)
Begins building a new application configuration using a default object mapper, from the given definition.
|
static ConfigData |
ConfigData.of(List<Module> modules,
Action<? super ConfigDataSpec> definition)
Begins building a new application configuration using a default object mapper with the supplied modules registered, from the given definition.
|
static ConfigData |
ConfigData.of(ObjectMapper objectMapper,
Action<? super ConfigDataSpec> definition)
Begins building a new application configuration using a specified object mapper, from the given definition.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ServerConfig
The configuration of the server.
|