| Package | Description |
|---|---|
| ratpack.form |
Support for handling uploaded forms, including file uploads.
|
| ratpack.http |
The HTTP protocol.
|
| ratpack.parse |
Parsing in Ratpack refers to deserializing a request body into a Java object of some type.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
UploadedFile
A file that was uploaded via a form.
|
| Modifier and Type | Method and Description |
|---|---|
TypedData |
Request.getBody()
The body of the request.
|
| Modifier and Type | Method and Description |
|---|---|
T |
Parser.parse(Context context,
TypedData requestBody,
P parse)
Deserializes the request body of the context into an object.
|