public abstract class AbstractMessageConverter extends Object implements MessageConverter
MessageConverter
implementations including support for
common properties and a partial implementation of the conversion methods mainly to
check if the converter supports the conversion based on the payload class and MIME
type.Modifier | Constructor and Description |
---|---|
protected |
AbstractMessageConverter(Collection<MimeType> supportedMimeTypes)
Construct an
AbstractMessageConverter supporting multiple MIME types. |
protected |
AbstractMessageConverter(MimeType supportedMimeType)
Construct an
AbstractMessageConverter supporting a single MIME type. |
Modifier and Type | Method and Description |
---|---|
protected boolean |
canConvertFrom(Message<?> message,
Class<?> targetClass) |
protected boolean |
canConvertTo(Object payload,
MessageHeaders headers) |
abstract Object |
convertFromInternal(Message<?> message,
Class<?> targetClass)
Convert the message payload from serialized form to an Object.
|
abstract Object |
convertToInternal(Object payload,
MessageHeaders headers)
Convert the payload object to serialized form.
|
Object |
fromMessage(Message<?> message,
Class<?> targetClass)
Convert the payload of a
Message from serialized form to a typed Object of
the specified target class. |
ContentTypeResolver |
getContentTypeResolver()
Return the configured
ContentTypeResolver . |
protected MimeType |
getDefaultContentType(Object payload)
Returns the default content type for the payload.
|
protected MimeType |
getMimeType(MessageHeaders headers) |
Class<?> |
getSerializedPayloadClass()
Return the configured preferred serialization payload class.
|
List<MimeType> |
getSupportedMimeTypes()
Return the supported MIME types.
|
boolean |
isStrictContentTypeMatch()
Whether content type resolution must produce a value that matches one of
the supported MIME types.
|
void |
setContentTypeResolver(ContentTypeResolver resolver)
Configure the
ContentTypeResolver to use to resolve the content
type of an input message. |
void |
setSerializedPayloadClass(Class<?> payloadClass)
Configure the preferred serialization class to use (byte[] or String) when
converting an Object payload to a
Message . |
void |
setStrictContentTypeMatch(boolean strictContentTypeMatch)
Whether this converter should convert messages for which no content type
could be resolved through the configured
ContentTypeResolver . |
protected abstract boolean |
supports(Class<?> clazz)
Whether the given class is supported by this converter.
|
protected boolean |
supportsMimeType(MessageHeaders headers) |
Message<?> |
toMessage(Object payload,
MessageHeaders headers)
Create a
Message whose payload is the result of converting the given
payload Object to serialized form. |
protected final Log logger
protected AbstractMessageConverter(MimeType supportedMimeType)
AbstractMessageConverter
supporting a single MIME type.supportedMimeType
- the supported MIME typeprotected AbstractMessageConverter(Collection<MimeType> supportedMimeTypes)
AbstractMessageConverter
supporting multiple MIME types.supportedMimeTypes
- the supported MIME typespublic List<MimeType> getSupportedMimeTypes()
public void setContentTypeResolver(ContentTypeResolver resolver)
ContentTypeResolver
to use to resolve the content
type of an input message.
Note that if no resolver is configured, then
strictContentTypeMatch
should
be left as false
(the default) or otherwise this converter will
ignore all messages.
By default, a DefaultContentTypeResolver
instance is used.
public ContentTypeResolver getContentTypeResolver()
ContentTypeResolver
.public void setStrictContentTypeMatch(boolean strictContentTypeMatch)
ContentTypeResolver
.
A converter can configured to be strict only when a
contentTypeResolver
is configured and the list of supportedMimeTypes
is not be empty.
then requires the content type of a message to be resolved
When set to true, #supportsMimeType(MessageHeaders) will return false if the
contentTypeResolver is not defined or if no content-type header is present.public boolean isStrictContentTypeMatch()
public void setSerializedPayloadClass(Class<?> payloadClass)
Message
.
The default value is byte[].
payloadClass
- either byte[] or Stringpublic Class<?> getSerializedPayloadClass()
protected MimeType getDefaultContentType(Object payload)
toMessage(Object, MessageHeaders)
is invoked without message headers or
without a content type header.
By default, this returns the first element of the supportedMimeTypes
, if any. Can be overridden in sub-classes.
payload
- the payload being converted to messagenull
if not knownprotected abstract boolean supports(Class<?> clazz)
clazz
- the class to test for supporttrue
if supported; false
otherwisepublic final Object fromMessage(Message<?> message, Class<?> targetClass)
MessageConverter
Message
from serialized form to a typed Object of
the specified target class. The MessageHeaders.CONTENT_TYPE
header should
indicate the MIME type to convert from.
If the converter does not support the specified media type or cannot perform the
conversion, it should return null
.
fromMessage
in interface MessageConverter
message
- the input messagetargetClass
- the target class for the conversionnull
if the converter cannot
perform the conversionpublic abstract Object convertFromInternal(Message<?> message, Class<?> targetClass)
public final Message<?> toMessage(Object payload, MessageHeaders headers)
MessageConverter
Message
whose payload is the result of converting the given
payload Object to serialized form. The optional MessageHeaders
parameter
may contain a MessageHeaders.CONTENT_TYPE
header to specify the target
media type for the conversion and it may contain additional headers to be added to
the message.
If the converter does not support the specified media type or cannot perform the
conversion, it should return null
.
toMessage
in interface MessageConverter
payload
- the Object to convertheaders
- optional headers for the message, may be null
null
if the converter does not support the
Object type or the target media typeprotected boolean canConvertTo(Object payload, MessageHeaders headers)
public abstract Object convertToInternal(Object payload, MessageHeaders headers)
protected boolean supportsMimeType(MessageHeaders headers)
protected MimeType getMimeType(MessageHeaders headers)