org.springframework.integration.handler
Class AbstractMessageHandler
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.AbstractMessageHandler
- All Implemented Interfaces:
- BeanFactoryAware, BeanNameAware, InitializingBean, Ordered, NamedComponent, MessageHandler, TrackableComponent
- Direct Known Subclasses:
- AbstractInternetProtocolSendingMessageHandler, AbstractMessageRouter, AbstractReplyProducingMessageHandler, ApplicationEventPublishingMessageHandler, ByteStreamWritingMessageHandler, CharacterStreamWritingMessageHandler, CorrelatingMessageBarrier, CorrelatingMessageHandler, JdbcMessageHandler, LoggingHandler, MailSendingMessageHandler, MessageHandlerChain, NotificationPublishingMessageHandler, TcpSendingMessageHandler, XmppMessageSendingMessageHandler, XmppRosterEventMessageSendingHandler
public abstract class AbstractMessageHandler
- extends IntegrationObjectSupport
- implements MessageHandler, TrackableComponent, Ordered
Base class for MessageHandler implementations that provides basic validation
and error handling capabilities. Asserts that the incoming Message is not
null and that it does not contain a null payload. Converts checked exceptions
into runtime MessagingException
s.
- Author:
- Mark Fisher, Oleg Zhurakousky
Field Summary |
protected org.apache.commons.logging.Log |
logger
|
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport |
afterPropertiesSet, getBeanFactory, getComponentName, getConversionService, getRequiredMetadataPersister, getTaskScheduler, onInit, setBeanFactory, setBeanName, setComponentName, setConversionService, setTaskScheduler, toString |
logger
protected final org.apache.commons.logging.Log logger
AbstractMessageHandler
public AbstractMessageHandler()
setOrder
public void setOrder(int order)
getOrder
public int getOrder()
- Specified by:
getOrder
in interface Ordered
getComponentType
public String getComponentType()
- Description copied from class:
IntegrationObjectSupport
- Subclasses may implement this method to provide component type information.
- Specified by:
getComponentType
in interface NamedComponent
- Overrides:
getComponentType
in class IntegrationObjectSupport
setShouldTrack
public void setShouldTrack(boolean shouldTrack)
- Specified by:
setShouldTrack
in interface TrackableComponent
handleMessage
public final void handleMessage(Message<?> message)
- Description copied from interface:
MessageHandler
- Handles the message if possible. If the handler cannot deal with the
message this will result in a
MessageRejectedException
e.g.
in case of a Selective Consumer. When a consumer tries to handle a
message, but fails to do so, a MessageHandlingException
is
thrown. In the last case it is recommended to treat the message as tainted
and go into an error scenario.
When the handling results in a failure of another message being sent
(e.g. a "reply" message), that failure will trigger a
MessageDeliveryException
.
- Specified by:
handleMessage
in interface MessageHandler
- Parameters:
message
- the message to be handled
handleMessageInternal
protected abstract void handleMessageInternal(Message<?> message)
throws Exception
- Throws:
Exception
Copyright © 2010. All Rights Reserved.