org.springframework.integration.splitter
Class ExpressionEvaluatingSplitter
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.handler.AbstractReplyProducingMessageHandler
org.springframework.integration.splitter.AbstractMessageSplitter
org.springframework.integration.splitter.ExpressionEvaluatingSplitter
- All Implemented Interfaces:
- BeanFactoryAware, BeanNameAware, InitializingBean, Ordered, NamedComponent, MessageHandler, MessageProducer, TrackableComponent
public class ExpressionEvaluatingSplitter
- extends AbstractMessageSplitter
A Message Splitter implementation that evaluates the specified SpEL
expression. The result of evaluation will typically be a Collection or
Array. If the result is not a Collection or Array, then the single Object
will be returned as the payload of a single reply Message.
- Since:
- 2.0
- Author:
- Mark Fisher
Method Summary |
void |
onInit()
Subclasses may implement this for initialization logic. |
protected Object |
splitMessage(Message<?> message)
Subclasses must override this method to split the received Message. |
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport |
afterPropertiesSet, getBeanFactory, getComponentName, getConversionService, getRequiredMetadataPersister, getTaskScheduler, setBeanFactory, setBeanName, setComponentName, setConversionService, setTaskScheduler, toString |
ExpressionEvaluatingSplitter
public ExpressionEvaluatingSplitter(String expression)
onInit
public void onInit()
- Description copied from class:
IntegrationObjectSupport
- Subclasses may implement this for initialization logic.
- Overrides:
onInit
in class AbstractReplyProducingMessageHandler
splitMessage
protected final Object splitMessage(Message<?> message)
- Description copied from class:
AbstractMessageSplitter
- Subclasses must override this method to split the received Message. The return value may be a Collection or
Array. The individual elements may be Messages, but it is not necessary. If the elements are not Messages, each
will be provided as the payload of a Message. It is also acceptable to return a single Object or Message. In that
case, a single reply Message will be produced.
- Specified by:
splitMessage
in class AbstractMessageSplitter
Copyright © 2010. All Rights Reserved.