| Package | Description |
|---|---|
| ratpack.handling |
The handling of application requests.
|
| ratpack.jackson |
Integration with the Jackson JSON marshalling library.
|
| ratpack.parse |
Parsing in Ratpack refers to deserializing a request body into a Java object of some type.
|
| Class and Description |
|---|
| NoSuchParserException
Thrown when a request is made to parse the request, but no suitable parser was found that matched the content type and parse object.
|
| Parse
A parse object is a description of how to parse the request into an object.
|
| ParserException
Wraps an exception thrown by a parser while parsing.
|
| Class and Description |
|---|
| Parse
A parse object is a description of how to parse the request into an object.
|
| Class and Description |
|---|
| NoOptParse
A generic parse type that can be used when parsers do not need any extra information from parse objects other than type.
|
| NoOptParser
A parser that uses
NoOptParse as its parse type. |
| Parse
A parse object is a description of how to parse the request into an object.
|
| ParseException
A generic super type for exceptions indicate something when wrong for a parse operation.
|
| Parser
A parser is able to deserialize the body of a request into an object representation.
|