Uses of Interface
ratpack.config.FileSystemBinding
-
Packages that use FileSystemBinding 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.handling The handling of application requests.ratpack.core.server Objects used to start a ratpack application. -
-
Uses of FileSystemBinding in ratpack.config
Fields in ratpack.config with type parameters of type FileSystemBinding Modifier and Type Field Description static com.google.common.reflect.TypeToken<FileSystemBinding>
FileSystemBinding. TYPE
A type token for this type.Methods in ratpack.config that return FileSystemBinding Modifier and Type Method Description FileSystemBinding
FileSystemBinding. binding(String path)
Construct a new binding by using the given path as a relative path from this bind point.static FileSystemBinding
FileSystemBinding. of(Path path)
static FileSystemBinding
FileSystemBinding. root()
Methods in ratpack.config with parameters of type FileSystemBinding Modifier and Type Method Description ObjectNode
ConfigSource. loadConfigData(ObjectMapper objectMapper, FileSystemBinding fileSystemBinding)
Loads the configuration data from this data source. -
Uses of FileSystemBinding in ratpack.core.handling
Methods in ratpack.core.handling that return FileSystemBinding Modifier and Type Method Description default FileSystemBinding
Context. getFileSystemBinding()
Returns the current filesystem binding from the context registry. -
Uses of FileSystemBinding in ratpack.core.server
Methods in ratpack.core.server that return FileSystemBinding Modifier and Type Method Description FileSystemBinding
ServerConfig. getBaseDir()
The base dir of the application, which is also the initialFileSystemBinding
.
-