Class MappingJackson2MessageConverter
- java.lang.Object
- org.springframework.jms.support.converter.MappingJackson2MessageConverter
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,MessageConverter,SmartMessageConverter
public class MappingJackson2MessageConverter extends Object implements SmartMessageConverter, BeanClassLoaderAware
Message converter that uses Jackson 2.x to convert messages to and from JSON. Maps an object to aBytesMessage, or to aTextMessageif thetargetTypeis set toMessageType.TEXT. Converts from aTextMessageorBytesMessageto an object.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:
- 3.1.4
- Author:
- Mark Pollack, Dave Syer, Juergen Hoeller, Stephane Nicoll
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ENCODINGThe default encoding used for writing to text messages: UTF-8.
Constructor Summary
Constructors Constructor Description MappingJackson2MessageConverter()
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected ObjectconvertFromBytesMessage(BytesMessage message, JavaType targetJavaType)Convert a BytesMessage to a Java Object with the specified type.protected ObjectconvertFromMessage(Message message, JavaType targetJavaType)Template method that allows for custom message mapping.protected ObjectconvertFromTextMessage(TextMessage message, JavaType targetJavaType)Convert a TextMessage to a Java Object with the specified type.ObjectfromMessage(Message message)Convert from a JMS Message to a Java object.protected JavaTypegetJavaTypeForMessage(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 BytesMessagemapToBytesMessage(Object object, Session session, ObjectMapper objectMapper)Deprecated.as of 4.3, usemapToBytesMessage(Object, Session, ObjectWriter)protected BytesMessagemapToBytesMessage(Object object, Session session, ObjectWriter objectWriter)Map the given object to aBytesMessage.protected MessagemapToMessage(Object object, Session session, ObjectMapper objectMapper, MessageType targetType)Deprecated.as of 4.3, usemapToMessage(Object, Session, ObjectWriter, MessageType)protected MessagemapToMessage(Object object, Session session, ObjectWriter objectWriter, MessageType targetType)Template method that allows for custom message mapping.protected TextMessagemapToTextMessage(Object object, Session session, ObjectMapper objectMapper)Deprecated.as of 4.3, usemapToTextMessage(Object, Session, ObjectWriter)protected TextMessagemapToTextMessage(Object object, Session session, ObjectWriter objectWriter)Map the given object to aTextMessage.voidsetBeanClassLoader(ClassLoader classLoader)Callback that supplies the beanclass loaderto a bean instance.voidsetEncoding(String encoding)Specify the encoding to use when converting to and from text-based message body content.voidsetEncodingPropertyName(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.voidsetObjectMapper(ObjectMapper objectMapper)Specify theObjectMapperto use instead of using the default.voidsetTargetType(MessageType targetType)voidsetTypeIdMappings(Map<String,Class<?>> typeIdMappings)Specify mappings from type ids to Java classes, if desired.protected voidsetTypeIdOnMessage(Object object, Message message)Set a type id for the given payload object on the given JMS Message.voidsetTypeIdPropertyName(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.MessagetoMessage(Object object, Session session)Convert a Java object to a JMS Message using the supplied session to create the message object.protected MessagetoMessage(Object object, Session session, ObjectWriter objectWriter)MessagetoMessage(Object object, Session session, Class<?> jsonView)Convert a Java object to a JMS Message using the specified json view and the supplied session to create the message object.MessagetoMessage(Object object, Session session, Object conversionHint)A variant ofMessageConverter.toMessage(Object, Session)which takes an extra conversion context as an argument, allowing to take e.g.
Field Detail
DEFAULT_ENCODING
public static final String DEFAULT_ENCODING
The default encoding used for writing to text messages: UTF-8.- See Also:
- Constant Field Values
Constructor Detail
MappingJackson2MessageConverter
public MappingJackson2MessageConverter()
Method Detail
setObjectMapper
public void setObjectMapper(ObjectMapper objectMapper)
Specify theObjectMapperto use instead of using the default.
setTargetType
public void setTargetType(MessageType targetType)
Specify whethertoMessage(Object, Session)should marshal to aBytesMessageor aTextMessage.The default is
MessageType.BYTES, i.e. this converter marshals to aBytesMessage. Note that the default version of this converter supportsMessageType.BYTESandMessageType.TEXTonly.- See Also:
MessageType.BYTES,MessageType.TEXT
setEncoding
public void setEncoding(String encoding)
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
public 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.Default is none. Setting this property is optional; if not set, UTF-8 will be used for decoding any incoming bytes message.
- See Also:
setEncoding(java.lang.String)
setTypeIdPropertyName
public 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.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
public void setTypeIdMappings(Map<String,Class<?>> typeIdMappings)
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
public void setBeanClassLoader(ClassLoader classLoader)
Description copied from interface:BeanClassLoaderAwareCallback that supplies the beanclass loaderto a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean'sInitializingBean.afterPropertiesSet()method or a custom init-method.- Specified by:
setBeanClassLoaderin interfaceBeanClassLoaderAware- Parameters:
classLoader- the owning class loader; may benullin which case a defaultClassLoadermust be used, for example theClassLoaderobtained viaClassUtils.getDefaultClassLoader()
toMessage
public Message toMessage(Object object, Session session) throws JMSException, MessageConversionException
Description copied from interface:MessageConverterConvert a Java object to a JMS Message using the supplied session to create the message object.- Specified by:
toMessagein 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, Object conversionHint) throws JMSException, MessageConversionException
Description copied from interface:SmartMessageConverterA 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:
toMessagein 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:
MessageConverter.toMessage(Object, Session)
toMessage
public Message toMessage(Object object, Session session, 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
public Object fromMessage(Message message) throws JMSException, MessageConversionException
Description copied from interface:MessageConverterConvert from a JMS Message to a Java object.- Specified by:
fromMessagein 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
@Deprecated protected TextMessage mapToTextMessage(Object object, Session session, ObjectMapper objectMapper) throws JMSException, IOException
Deprecated.as of 4.3, usemapToTextMessage(Object, Session, ObjectWriter)Map the given object to aTextMessage.- Parameters:
object- the object to be mappedsession- current JMS sessionobjectMapper- the mapper to use- Returns:
- the resulting message
- Throws:
JMSException- if thrown by JMS methodsIOException- in case of I/O errors- See Also:
Session.createBytesMessage()
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:
Session.createBytesMessage()
mapToBytesMessage
@Deprecated protected BytesMessage mapToBytesMessage(Object object, Session session, ObjectMapper objectMapper) throws JMSException, IOException
Deprecated.as of 4.3, usemapToBytesMessage(Object, Session, ObjectWriter)Map the given object to aBytesMessage.- Parameters:
object- the object to be mappedsession- current JMS sessionobjectMapper- the mapper to use- Returns:
- the resulting message
- Throws:
JMSException- if thrown by JMS methodsIOException- in case of I/O errors- See Also:
Session.createBytesMessage()
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:
Session.createBytesMessage()
mapToMessage
@Deprecated protected Message mapToMessage(Object object, Session session, ObjectMapper objectMapper, MessageType targetType) throws JMSException, IOException
Deprecated.as of 4.3, usemapToMessage(Object, Session, ObjectWriter, MessageType)Template method that allows for custom message mapping. Invoked whensetTargetType(org.springframework.jms.support.converter.MessageType)is notMessageType.TEXTorMessageType.BYTES.The default implementation throws an
IllegalArgumentException.- Parameters:
object- the object to marshalsession- the JMS SessionobjectMapper- the mapper 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
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.TEXTorMessageType.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
protected void setTypeIdOnMessage(Object object, Message message) throws JMSException
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:
getJavaTypeForMessage(javax.jms.Message),setTypeIdPropertyName(String),setTypeIdMappings(java.util.Map)
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.TEXTorMessageType.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
protected JavaType getJavaTypeForMessage(Message message) throws JMSException
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:
setTypeIdOnMessage(Object, javax.jms.Message),setTypeIdPropertyName(String),setTypeIdMappings(java.util.Map)
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