Class MappingJackson2MessageConverter
- All Implemented Interfaces:
Aware
,BeanClassLoaderAware
,MessageConverter
,SmartMessageConverter
BytesMessage
, or to a TextMessage
if the
targetType
is set to MessageType.TEXT
.
Converts from a TextMessage
or BytesMessage
to an object.
It customizes Jackson's default properties with the following ones:
MapperFeature.DEFAULT_VIEW_INCLUSION
is disabledDeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES
is disabled
Compatible with Jackson 2.9 to 2.12, as of Spring 5.3.
- Since:
- 3.1.4
- Author:
- Mark Pollack, Dave Syer, Juergen Hoeller, Stephane Nicoll
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The default encoding used for writing to text messages: UTF-8. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected Object
convertFromBytesMessage
(BytesMessage message, JavaType targetJavaType) Convert a BytesMessage to a Java Object with the specified type.protected Object
convertFromMessage
(Message message, JavaType targetJavaType) Template method that allows for custom message mapping.protected Object
convertFromTextMessage
(TextMessage message, JavaType targetJavaType) Convert a TextMessage to a Java Object with the specified type.fromMessage
(Message message) Convert from a JMS Message to a Java object.protected JavaType
getJavaTypeForMessage
(Message message) Determine a Jackson JavaType for the given JMS Message, typically parsing a type id message property.protected Class<?>
getSerializationView
(Object conversionHint) Determine a Jackson serialization view based on the given conversion hint.protected BytesMessage
mapToBytesMessage
(Object object, Session session, ObjectWriter objectWriter) Map the given object to aBytesMessage
.protected Message
mapToMessage
(Object object, Session session, ObjectWriter objectWriter, MessageType targetType) Template method that allows for custom message mapping.protected TextMessage
mapToTextMessage
(Object object, Session session, ObjectWriter objectWriter) Map the given object to aTextMessage
.void
setBeanClassLoader
(ClassLoader classLoader) Callback that supplies the beanclass loader
to a bean instance.void
setEncoding
(String encoding) Specify the encoding to use when converting to and from text-based message body content.void
setEncodingPropertyName
(String encodingPropertyName) Specify the name of the JMS message property that carries the encoding from bytes to String and back is BytesMessage is used during the conversion process.void
setObjectMapper
(ObjectMapper objectMapper) Specify theObjectMapper
to use instead of using the default.void
setTargetType
(MessageType targetType) void
setTypeIdMappings
(Map<String, Class<?>> typeIdMappings) Specify mappings from type ids to Java classes, if desired.protected void
setTypeIdOnMessage
(Object object, Message message) Set a type id for the given payload object on the given JMS Message.void
setTypeIdPropertyName
(String typeIdPropertyName) Specify the name of the JMS message property that carries the type id for the contained object: either a mapped id value or a raw Java class name.Convert a Java object to a JMS Message using the supplied session to create the message object.protected Message
toMessage
(Object object, Session session, ObjectWriter objectWriter) Convert a Java object to a JMS Message using the specified json view and the supplied session to create the message object.A variant ofMessageConverter.toMessage(Object, Session)
which takes an extra conversion context as an argument, allowing to take e.g.
-
Field Details
-
DEFAULT_ENCODING
The default encoding used for writing to text messages: UTF-8.- See Also:
-
-
Constructor Details
-
MappingJackson2MessageConverter
public MappingJackson2MessageConverter()
-
-
Method Details
-
setObjectMapper
Specify theObjectMapper
to use instead of using the default. -
setTargetType
Specify whethertoMessage(Object, Session)
should marshal to aBytesMessage
or aTextMessage
.The default is
MessageType.BYTES
, i.e. this converter marshals to aBytesMessage
. Note that the default version of this converter supportsMessageType.BYTES
andMessageType.TEXT
only.- See Also:
-
setEncoding
Specify the encoding to use when converting to and from text-based message body content. The default encoding will be "UTF-8".When reading from a text-based message, an encoding may have been suggested through a special JMS property which will then be preferred over the encoding set on this MessageConverter instance.
-
setEncodingPropertyName
Specify the name of the JMS message property that carries the encoding from bytes to String and back is BytesMessage is used during the conversion process.Default is none. Setting this property is optional; if not set, UTF-8 will be used for decoding any incoming bytes message.
- See Also:
-
setTypeIdPropertyName
Specify the name of the JMS message property that carries the type id for the contained object: either a mapped id value or a raw Java class name.Default is none. NOTE: This property needs to be set in order to allow for converting from an incoming message to a Java object.
-
setTypeIdMappings
Specify mappings from type ids to Java classes, if desired. This allows for synthetic ids in the type id message property, instead of transferring Java class names.Default is no custom mappings, i.e. transferring raw Java class names.
- Parameters:
typeIdMappings
- a Map with type id values as keys and Java classes as values
-
setBeanClassLoader
Description copied from interface:BeanClassLoaderAware
Callback that supplies the beanclass loader
to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean's
InitializingBean.afterPropertiesSet()
method or a custom init-method.- Specified by:
setBeanClassLoader
in interfaceBeanClassLoaderAware
- Parameters:
classLoader
- the owning class loader
-
toMessage
public Message toMessage(Object object, Session session) throws JMSException, MessageConversionException Description copied from interface:MessageConverter
Convert a Java object to a JMS Message using the supplied session to create the message object.- Specified by:
toMessage
in interfaceMessageConverter
- Parameters:
object
- the object to convertsession
- the Session to use for creating a JMS Message- Returns:
- the JMS Message
- Throws:
JMSException
- if thrown by JMS API methodsMessageConversionException
- in case of conversion failure
-
toMessage
public Message toMessage(Object object, Session session, @Nullable Object conversionHint) throws JMSException, MessageConversionException Description copied from interface:SmartMessageConverter
A variant ofMessageConverter.toMessage(Object, Session)
which takes an extra conversion context as an argument, allowing to take e.g. annotations on a payload parameter into account.- Specified by:
toMessage
in interfaceSmartMessageConverter
- Parameters:
object
- the object to convertsession
- the Session to use for creating a JMS MessageconversionHint
- an extra object passed to theMessageConverter
, e.g. the associatedMethodParameter
(may benull
}- Returns:
- the JMS Message
- Throws:
JMSException
- if thrown by JMS API methodsMessageConversionException
- in case of conversion failure- See Also:
-
toMessage
public Message toMessage(Object object, Session session, @Nullable Class<?> jsonView) throws JMSException, MessageConversionException Convert a Java object to a JMS Message using the specified json view and the supplied session to create the message object.- Parameters:
object
- the object to convertsession
- the Session to use for creating a JMS MessagejsonView
- the view to use to filter the content- Returns:
- the JMS Message
- Throws:
JMSException
- if thrown by JMS API methodsMessageConversionException
- in case of conversion failure- Since:
- 4.3
-
fromMessage
Description copied from interface:MessageConverter
Convert from a JMS Message to a Java object.- Specified by:
fromMessage
in interfaceMessageConverter
- Parameters:
message
- the message to convert- Returns:
- the converted Java object
- Throws:
JMSException
- if thrown by JMS API methodsMessageConversionException
- in case of conversion failure
-
toMessage
protected Message toMessage(Object object, Session session, ObjectWriter objectWriter) throws JMSException, MessageConversionException -
mapToTextMessage
protected TextMessage mapToTextMessage(Object object, Session session, ObjectWriter objectWriter) throws JMSException, IOException Map the given object to aTextMessage
.- Parameters:
object
- the object to be mappedsession
- current JMS sessionobjectWriter
- the writer to use- Returns:
- the resulting message
- Throws:
JMSException
- if thrown by JMS methodsIOException
- in case of I/O errors- Since:
- 4.3
- See Also:
-
mapToBytesMessage
protected BytesMessage mapToBytesMessage(Object object, Session session, ObjectWriter objectWriter) throws JMSException, IOException Map the given object to aBytesMessage
.- Parameters:
object
- the object to be mappedsession
- current JMS sessionobjectWriter
- the writer to use- Returns:
- the resulting message
- Throws:
JMSException
- if thrown by JMS methodsIOException
- in case of I/O errors- Since:
- 4.3
- See Also:
-
mapToMessage
protected Message mapToMessage(Object object, Session session, ObjectWriter objectWriter, MessageType targetType) throws JMSException, IOException Template method that allows for custom message mapping. Invoked whensetTargetType(org.springframework.jms.support.converter.MessageType)
is notMessageType.TEXT
orMessageType.BYTES
.The default implementation throws an
IllegalArgumentException
.- Parameters:
object
- the object to marshalsession
- the JMS SessionobjectWriter
- the writer to usetargetType
- the target message type (other than TEXT or BYTES)- Returns:
- the resulting message
- Throws:
JMSException
- if thrown by JMS methodsIOException
- in case of I/O errors
-
setTypeIdOnMessage
Set a type id for the given payload object on the given JMS Message.The default implementation consults the configured type id mapping and sets the resulting value (either a mapped id or the raw Java class name) into the configured type id message property.
- Parameters:
object
- the payload object to set a type id formessage
- the JMS Message on which to set the type id property- Throws:
JMSException
- if thrown by JMS methods- See Also:
-
convertFromTextMessage
protected Object convertFromTextMessage(TextMessage message, JavaType targetJavaType) throws JMSException, IOException Convert a TextMessage to a Java Object with the specified type.- Parameters:
message
- the input messagetargetJavaType
- the target type- Returns:
- the message converted to an object
- Throws:
JMSException
- if thrown by JMSIOException
- in case of I/O errors
-
convertFromBytesMessage
protected Object convertFromBytesMessage(BytesMessage message, JavaType targetJavaType) throws JMSException, IOException Convert a BytesMessage to a Java Object with the specified type.- Parameters:
message
- the input messagetargetJavaType
- the target type- Returns:
- the message converted to an object
- Throws:
JMSException
- if thrown by JMSIOException
- in case of I/O errors
-
convertFromMessage
protected Object convertFromMessage(Message message, JavaType targetJavaType) throws JMSException, IOException Template method that allows for custom message mapping. Invoked whensetTargetType(org.springframework.jms.support.converter.MessageType)
is notMessageType.TEXT
orMessageType.BYTES
.The default implementation throws an
IllegalArgumentException
.- Parameters:
message
- the input messagetargetJavaType
- the target type- Returns:
- the message converted to an object
- Throws:
JMSException
- if thrown by JMSIOException
- in case of I/O errors
-
getJavaTypeForMessage
Determine a Jackson JavaType for the given JMS Message, typically parsing a type id message property.The default implementation parses the configured type id property name and consults the configured type id mapping. This can be overridden with a different strategy, e.g. doing some heuristics based on message origin.
- Parameters:
message
- the JMS Message from which to get the type id property- Throws:
JMSException
- if thrown by JMS methods- See Also:
-
getSerializationView
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
null
if none
-