Class AbstractJacksonDecoder<T extends tools.jackson.databind.ObjectMapper>
java.lang.Object
org.springframework.http.codec.JacksonCodecSupport<T>
org.springframework.http.codec.AbstractJacksonDecoder<T>
- Type Parameters:
T- the type ofObjectMapper
- All Implemented Interfaces:
Decoder<Object>, HttpMessageDecoder<Object>
- Direct Known Subclasses:
JacksonCborDecoder, JacksonJsonDecoder, JacksonSmileDecoder
public abstract class AbstractJacksonDecoder<T extends tools.jackson.databind.ObjectMapper>
extends JacksonCodecSupport<T>
implements HttpMessageDecoder<Object>
Abstract base class for Jackson 3.x decoding, leveraging non-blocking parsing.
- Since:
- 7.0
- Author:
- Sebastien Deleuze
-
Field Summary
Fields inherited from class JacksonCodecSupport
FILTER_PROVIDER_HINT, JSON_VIEW_HINT, logger, mapperRegistrations -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractJacksonDecoder(tools.jackson.databind.cfg.MapperBuilder<T, ?> builder, MimeType... mimeTypes) Construct a new instance with the providedbuildercustomized with theJacksonModules found byMapperBuilder.findModules(ClassLoader)andMimeTypes.protectedAbstractJacksonDecoder(T mapper, MimeType... mimeTypes) Construct a new instance with the providedObjectMapperandMimeTypes. -
Method Summary
Modifier and TypeMethodDescriptionbooleancanDecode(ResolvableType elementType, @Nullable MimeType mimeType) Whether the decoder supports the given target element type and the MIME type of the source stream.protected tools.jackson.databind.ObjectReadercustomizeReader(tools.jackson.databind.ObjectReader reader, ResolvableType elementType, @Nullable Map<String, Object> hints) Subclasses can use this method to customizeObjectReaderused for reading values.reactor.core.publisher.Flux<Object> decode(Publisher<DataBuffer> input, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Decode aDataBufferinput stream into a Flux ofT.decode(DataBuffer dataBuffer, ResolvableType targetType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Decode a data buffer to an Object of type T.reactor.core.publisher.Mono<Object> decodeToMono(Publisher<DataBuffer> input, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Decode aDataBufferinput stream into a Mono ofT.protected <A extends Annotation>
@Nullable AgetAnnotation(MethodParameter parameter, Class<A> annotType) Return the list of MIME types supported by this Decoder.getDecodableMimeTypes(ResolvableType targetType) Return the list of MIME types supported by this Decoder for the given type of element.getDecodeHints(ResolvableType actualType, ResolvableType elementType, ServerHttpRequest request, ServerHttpResponse response) Get decoding hints based on the server request or annotations on the target controller method parameter.intReturn theconfiguredbyte count limit.protected reactor.core.publisher.Flux<DataBuffer> processInput(Publisher<DataBuffer> input, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Process the input publisher into a flux.voidsetMaxInMemorySize(int byteCount) Set the max number of bytes that can be buffered by this decoder.Methods inherited from class JacksonCodecSupport
getHints, getJavaType, getMapper, getMapperRegistrations, getMappersForType, getMediaTypesForProblemDetail, getMimeTypes, getMimeTypes, getParameter, registerMappersForType, selectMapper, supportsMimeType
-
Constructor Details
-
AbstractJacksonDecoder
-
AbstractJacksonDecoder
-
-
Method Details
-
setMaxInMemorySize
public void setMaxInMemorySize(int byteCount) Set the max number of bytes that can be buffered by this decoder. This is either the size of the entire input when decoding as a whole, or the size of one top-level JSON object within a JSON stream. When the limit is exceeded,DataBufferLimitExceptionis raised.By default this is set to 256K.
- Parameters:
byteCount- the max number of bytes to buffer, or -1 for unlimited
-
getMaxInMemorySize
public int getMaxInMemorySize()Return theconfiguredbyte count limit. -
canDecode
Description copied from interface:DecoderWhether the decoder supports the given target element type and the MIME type of the source stream.- Specified by:
canDecodein interfaceDecoder<T extends tools.jackson.databind.ObjectMapper>- Parameters:
elementType- the target element type for the output streammimeType- the mime type associated with the stream to decode (can benullif not specified)- Returns:
trueif supported,falseotherwise
-
decode
public reactor.core.publisher.Flux<Object> decode(Publisher<DataBuffer> input, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Description copied from interface:DecoderDecode aDataBufferinput stream into a Flux ofT.- Specified by:
decodein interfaceDecoder<T extends tools.jackson.databind.ObjectMapper>- Parameters:
input- theDataBufferinput stream to decodeelementType- the expected type of elements in the output stream; this type must have been previously passed to theDecoder.canDecode(ResolvableType, MimeType)method and it must have returnedtrue.mimeType- the MIME type associated with the input stream (optional)hints- additional information about how to do decode- Returns:
- the output stream with decoded elements
-
processInput
protected reactor.core.publisher.Flux<DataBuffer> processInput(Publisher<DataBuffer> input, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Process the input publisher into a flux. Default implementation returnsFlux.from(Publisher), but subclasses can choose to customize this behavior.- Parameters:
input- theDataBufferinput stream to processelementType- the expected type of elements in the output streammimeType- the MIME type associated with the input stream (optional)hints- additional information about how to do encode- Returns:
- the processed flux
-
decodeToMono
public reactor.core.publisher.Mono<Object> decodeToMono(Publisher<DataBuffer> input, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) Description copied from interface:DecoderDecode aDataBufferinput stream into a Mono ofT.- Specified by:
decodeToMonoin interfaceDecoder<T extends tools.jackson.databind.ObjectMapper>- Parameters:
input- theDataBufferinput stream to decodeelementType- the expected type of elements in the output stream; this type must have been previously passed to theDecoder.canDecode(ResolvableType, MimeType)method and it must have returnedtrue.mimeType- the MIME type associated with the input stream (optional)hints- additional information about how to do decode- Returns:
- the output stream with the decoded element
-
decode
public Object decode(DataBuffer dataBuffer, ResolvableType targetType, @Nullable MimeType mimeType, @Nullable Map<String, Object> hints) throws DecodingExceptionDescription copied from interface:DecoderDecode a data buffer to an Object of type T. This is useful for scenarios, that distinct messages (or events) are decoded and handled individually, in fully aggregated form.- Specified by:
decodein interfaceDecoder<T extends tools.jackson.databind.ObjectMapper>- Parameters:
dataBuffer- theDataBufferto decodetargetType- the expected output typemimeType- the MIME type associated with the datahints- additional information about how to do decode- Returns:
- the decoded value, possibly
null - Throws:
DecodingException
-
customizeReader
protected tools.jackson.databind.ObjectReader customizeReader(tools.jackson.databind.ObjectReader reader, ResolvableType elementType, @Nullable Map<String, Object> hints) Subclasses can use this method to customizeObjectReaderused for reading values.- Parameters:
reader- the reader instance to customizeelementType- the target type of element values to read tohints- a map with serialization hints; the Reactor Context, when available, may be accessed under the keyContextView.class.getName()- Returns:
- the customized
ObjectReaderto use
-
getDecodeHints
public Map<String,Object> getDecodeHints(ResolvableType actualType, ResolvableType elementType, ServerHttpRequest request, ServerHttpResponse response) Description copied from interface:HttpMessageDecoderGet decoding hints based on the server request or annotations on the target controller method parameter.- Specified by:
getDecodeHintsin interfaceHttpMessageDecoder<T extends tools.jackson.databind.ObjectMapper>- Parameters:
actualType- the actual target type to decode to, possibly a reactive wrapper and sourced fromMethodParameter, i.e. providing access to method parameter annotationselementType- the element type withinFlux/Monothat we're trying to decode torequest- the current requestresponse- the current response- Returns:
- a Map with hints, possibly empty
-
getDecodableMimeTypes
Description copied from interface:DecoderReturn the list of MIME types supported by this Decoder. The list may not apply to every possible target element type and calls to this method should typically be guarded viacanDecode(elementType, null). The list may also exclude MIME types supported only for a specific element type. Alternatively, useDecoder.getDecodableMimeTypes(ResolvableType)for a more precise list.- Specified by:
getDecodableMimeTypesin interfaceDecoder<T extends tools.jackson.databind.ObjectMapper>- Returns:
- the list of supported MIME types
-
getDecodableMimeTypes
Description copied from interface:DecoderReturn the list of MIME types supported by this Decoder for the given type of element. This list may differ fromDecoder.getDecodableMimeTypes()if the Decoder doesn't support the given element type or if it supports it only for a subset of MIME types.- Specified by:
getDecodableMimeTypesin interfaceDecoder<T extends tools.jackson.databind.ObjectMapper>- Parameters:
targetType- the type of element to check for decoding- Returns:
- the list of MIME types supported for the given target type
-
getAnnotation
protected <A extends Annotation> @Nullable A getAnnotation(MethodParameter parameter, Class<A> annotType) - Specified by:
getAnnotationin classJacksonCodecSupport<T extends tools.jackson.databind.ObjectMapper>
-