Uses of Interface
ratpack.config.ConfigData
-
Packages that use ConfigData 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.core.server Objects used to start a ratpack application. -
-
Uses of ConfigData in ratpack.config
Methods in ratpack.config that return ConfigData Modifier and Type Method Description ConfigData
ConfigDataBuilder. build()
Creates the config data, based on the state of this builder.static ConfigData
ConfigData. of(ObjectMapper objectMapper, Action<? super ConfigDataBuilder> definition)
static ConfigData
ConfigData. of(Environment env, ObjectMapper objectMapper, Action<? super ConfigDataBuilder> definition)
Builds a new config data with the specified object mapper, from the given definition.static ConfigData
ConfigData. of(Environment env, Action<? super ConfigDataBuilder> definition)
Builds a new config data with the default object mapper, from the given definition.static ConfigData
ConfigData. of(Action<? super ConfigDataBuilder> definition)
-
Uses of ConfigData in ratpack.core.server
Subinterfaces of ConfigData in ratpack.core.server Modifier and Type Interface Description interface
ServerConfig
The configuration of the server.
-