Package play.mvc
Class BodyParser.TolerantJson
java.lang.Object
play.mvc.BodyParser.MaxLengthBodyParser<A>
play.mvc.BodyParser.BufferingBodyParser<com.fasterxml.jackson.databind.JsonNode>
play.mvc.BodyParser.TolerantJson
- All Implemented Interfaces:
BodyParser<com.fasterxml.jackson.databind.JsonNode>
- Direct Known Subclasses:
BodyParser.Json
- Enclosing interface:
- BodyParser<A>
public static class BodyParser.TolerantJson
extends BodyParser.BufferingBodyParser<com.fasterxml.jackson.databind.JsonNode>
Parse the body as Json without checking the Content-Type.
-
Nested Class Summary
Nested classes/interfaces inherited from interface play.mvc.BodyParser
BodyParser.AnyContent, BodyParser.BufferingBodyParser<A>, BodyParser.Bytes, BodyParser.CompletableBodyParser<A>, BodyParser.Default, BodyParser.DelegatingBodyParser<A,B>, BodyParser.DelegatingMultipartFormDataBodyParser<A>, BodyParser.Empty, BodyParser.FormUrlEncoded, BodyParser.Json, BodyParser.MaxLengthBodyParser<A>, BodyParser.MultipartFormData, BodyParser.Of, BodyParser.Raw, BodyParser.TemporaryFile, BodyParser.Text, BodyParser.ToFile, BodyParser.TolerantJson, BodyParser.TolerantText, BodyParser.TolerantXml, BodyParser.Xml -
Constructor Summary
ConstructorsConstructorDescriptionTolerantJson(long maxLength, HttpErrorHandler errorHandler) TolerantJson(play.api.http.HttpConfiguration httpConfiguration, HttpErrorHandler errorHandler) -
Method Summary
Modifier and TypeMethodDescriptionprotected com.fasterxml.jackson.databind.JsonNodeparse(Http.RequestHeader request, ByteString bytes) Parse the body.Methods inherited from class play.mvc.BodyParser.BufferingBodyParser
apply1Methods inherited from class play.mvc.BodyParser.MaxLengthBodyParser
apply
-
Constructor Details
-
TolerantJson
-
TolerantJson
@Inject public TolerantJson(play.api.http.HttpConfiguration httpConfiguration, HttpErrorHandler errorHandler)
-
-
Method Details
-
parse
protected com.fasterxml.jackson.databind.JsonNode parse(Http.RequestHeader request, ByteString bytes) throws Exception Description copied from class:BodyParser.BufferingBodyParserParse the body.- Specified by:
parsein classBodyParser.BufferingBodyParser<com.fasterxml.jackson.databind.JsonNode>- Parameters:
request- The request associated with the body.bytes- The bytes of the body.- Returns:
- The body.
- Throws:
Exception- If the body failed to parse. It is assumed that any exceptions thrown by this method are the fault of the client, so a 400 bad request error will be returned if this method throws an exception.
-