Package | Description |
---|---|
ratpack.jackson |
Integration with the Jackson JSON marshalling library.
|
ratpack.jackson.guice |
Integration with the Jackson JSON marshalling library via Guice.
|
ratpack.parse |
Parsing in Ratpack refers to deserializing a request body into a Java object of some type.
|
Modifier and Type | Method and Description |
---|---|
static Parser<NullParseOpts> |
Jackson.Init.noOptParser()
The no-opts parser.
|
static Parser<JsonParseOpts> |
Jackson.Init.parser(ObjectMapper objectMapper)
The parser.
|
Modifier and Type | Method and Description |
---|---|
protected Parser<NullParseOpts> |
JacksonModule.noOptParser() |
protected Parser<JsonParseOpts> |
JacksonModule.parser(ObjectMapper objectMapper) |
Modifier and Type | Class and Description |
---|---|
class |
NoOptParserSupport
A convenience base for parsers that don't require options.
|
class |
ParserSupport<O>
A convenience superclass for
Parser implementations. |
Constructor and Description |
---|
ParserException(Parser<?> parser,
Throwable cause)
Constructor.
|