Package | Description |
---|---|
ratpack.handling |
The handling of application requests.
|
ratpack.path |
Types for managing the paths of requests inside the application.
|
Modifier and Type | Method and Description |
---|---|
static Handler |
Handlers.path(PathBinder pathBinder,
Handler handler)
Creates a handler that delegates to the given handlers if the request can be bound by the given path binder.
|
Modifier and Type | Method and Description |
---|---|
PathBinder |
PathBinderBuilder.build(boolean exhaustive)
Generate a
PathBinder from the contents of the builder. |
static PathBinder |
PathBinder.of(boolean exhaustive,
Action<? super PathBinderBuilder> action)
Builds a path binder programmatically.
|
static PathBinder |
PathBinder.parse(java.lang.String pathBindingSpec,
boolean exhaustive)
Creates a path binder by parsing the given path binding specification.
|