Class MappingJackson2MessageConverter
- java.lang.Object
- org.springframework.messaging.converter.AbstractMessageConverter
- org.springframework.messaging.converter.MappingJackson2MessageConverter
- All Implemented Interfaces:
MessageConverter,SmartMessageConverter
public class MappingJackson2MessageConverter extends AbstractMessageConverter
A Jackson 2 basedMessageConverterimplementation.It customizes Jackson's default properties with the following ones:
MapperFeature.DEFAULT_VIEW_INCLUSIONis disabledDeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIESis disabled
Compatible with Jackson 2.6 and higher, as of Spring 4.3.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev, Juergen Hoeller, Sebastien Deleuze
Field Summary
Fields inherited from class org.springframework.messaging.converter.AbstractMessageConverter
logger
Constructor Summary
Constructors Constructor Description MappingJackson2MessageConverter()Construct aMappingJackson2MessageConvertersupporting theapplication/jsonMIME type withUTF-8character set.MappingJackson2MessageConverter(MimeType... supportedMimeTypes)Construct aMappingJackson2MessageConvertersupporting one or more custom MIME types.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanConvertFrom(Message<?> message, Class<?> targetClass)protected booleancanConvertTo(Object payload, MessageHeaders headers)protected ObjectconvertFromInternal(Message<?> message, Class<?> targetClass, Object conversionHint)Convert the message payload from serialized form to an Object.protected ObjectconvertToInternal(Object payload, MessageHeaders headers, Object conversionHint)Convert the payload object to serialized form.protected JsonEncodinggetJsonEncoding(MimeType contentType)Determine the JSON encoding to use for the given content type.ObjectMappergetObjectMapper()Return the underlyingObjectMapperfor this converter.protected Class<?>getSerializationView(Object conversionHint)Determine a Jackson serialization view based on the given conversion hint.protected voidlogWarningIfNecessary(Type type, Throwable cause)Determine whether to log the given exception coming from aObjectMapper.canDeserialize(com.fasterxml.jackson.databind.JavaType)/ObjectMapper.canSerialize(java.lang.Class<?>)check.voidsetObjectMapper(ObjectMapper objectMapper)Set theObjectMapperfor this converter.voidsetPrettyPrint(boolean prettyPrint)Whether to use theDefaultPrettyPrinterwhen writing JSON.protected booleansupports(Class<?> clazz)Whether the given class is supported by this converter.Methods inherited from class org.springframework.messaging.converter.AbstractMessageConverter
convertFromInternal, convertToInternal, fromMessage, fromMessage, getContentTypeResolver, getDefaultContentType, getMimeType, getSerializedPayloadClass, getSupportedMimeTypes, isStrictContentTypeMatch, setContentTypeResolver, setSerializedPayloadClass, setStrictContentTypeMatch, supportsMimeType, toMessage, toMessage
Constructor Detail
MappingJackson2MessageConverter
public MappingJackson2MessageConverter()
Construct aMappingJackson2MessageConvertersupporting theapplication/jsonMIME type withUTF-8character set.
MappingJackson2MessageConverter
public MappingJackson2MessageConverter(MimeType... supportedMimeTypes)
Construct aMappingJackson2MessageConvertersupporting one or more custom MIME types.- Parameters:
supportedMimeTypes- the supported MIME types- Since:
- 4.1.5
Method Detail
setObjectMapper
public void setObjectMapper(ObjectMapper objectMapper)
Set theObjectMapperfor this converter. If not set, a defaultObjectMapperis used.Setting a custom-configured
ObjectMapperis one way to take further control of the JSON serialization process. For example, an extendedSerializerFactorycan be configured that provides custom serializers for specific types. The other option for refining the serialization process is to use Jackson's provided annotations on the types to be serialized, in which case a custom-configured ObjectMapper is unnecessary.
getObjectMapper
public ObjectMapper getObjectMapper()
Return the underlyingObjectMapperfor this converter.
setPrettyPrint
public void setPrettyPrint(boolean prettyPrint)
Whether to use theDefaultPrettyPrinterwhen writing JSON. This is a shortcut for setting up anObjectMapperas follows:ObjectMapper mapper = new ObjectMapper(); mapper.configure(SerializationFeature.INDENT_OUTPUT, true); converter.setObjectMapper(mapper);
canConvertFrom
protected boolean canConvertFrom(Message<?> message, Class<?> targetClass)
- Overrides:
canConvertFromin classAbstractMessageConverter
canConvertTo
protected boolean canConvertTo(Object payload, MessageHeaders headers)
- Overrides:
canConvertToin classAbstractMessageConverter
logWarningIfNecessary
protected void logWarningIfNecessary(Type type, Throwable cause)
Determine whether to log the given exception coming from aObjectMapper.canDeserialize(com.fasterxml.jackson.databind.JavaType)/ObjectMapper.canSerialize(java.lang.Class<?>)check.- Parameters:
type- the class that Jackson tested for (de-)serializabilitycause- the Jackson-thrown exception to evaluate (typically aJsonMappingException)- Since:
- 4.3
supports
protected boolean supports(Class<?> clazz)
Description copied from class:AbstractMessageConverterWhether the given class is supported by this converter.- Specified by:
supportsin classAbstractMessageConverter- Parameters:
clazz- the class to test for support- Returns:
trueif supported;falseotherwise
convertFromInternal
protected Object convertFromInternal(Message<?> message, Class<?> targetClass, Object conversionHint)
Description copied from class:AbstractMessageConverterConvert the message payload from serialized form to an Object.- Overrides:
convertFromInternalin classAbstractMessageConverter- Parameters:
message- the input messagetargetClass- the target class for the conversionconversionHint- an extra object passed to theMessageConverter, e.g. the associatedMethodParameter(may benull}- Returns:
- the result of the conversion, or
nullif the converter cannot perform the conversion
convertToInternal
protected Object convertToInternal(Object payload, MessageHeaders headers, Object conversionHint)
Description copied from class:AbstractMessageConverterConvert the payload object to serialized form.- Overrides:
convertToInternalin classAbstractMessageConverter- Parameters:
payload- the Object to convertheaders- optional headers for the message (may benull)conversionHint- an extra object passed to theMessageConverter, e.g. the associatedMethodParameter(may benull}- Returns:
- the resulting payload for the message, or
nullif the converter cannot perform the conversion
getSerializationView
protected Class<?> getSerializationView(Object conversionHint)
Determine a Jackson serialization view based on the given conversion hint.- Parameters:
conversionHint- the conversion hint Object as passed into the converter for the current conversion attempt- Returns:
- the serialization view class, or
nullif none - Since:
- 4.2
getJsonEncoding
protected JsonEncoding getJsonEncoding(MimeType contentType)
Determine the JSON encoding to use for the given content type.- Parameters:
contentType- the MIME type from the MessageHeaders, if any- Returns:
- the JSON encoding to use (never
null)