org.springframework.integration.splitter
Class MethodInvokingSplitter
java.lang.Object
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.handler.AbstractReplyProducingMessageHandler
org.springframework.integration.splitter.AbstractMessageSplitter
org.springframework.integration.splitter.MethodInvokingSplitter
- All Implemented Interfaces:
- org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.InitializingBean, MessageHandler
public class MethodInvokingSplitter
- extends AbstractMessageSplitter
- implements org.springframework.beans.factory.InitializingBean
A Message Splitter implementation that invokes the specified method
on the given object. The method's return value will be split if it
is a Collection or Array. If the return value is not a Collection or
Array, then the single Object will be returned as the payload of a
single reply Message.
- Author:
- Mark Fisher
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MethodInvokingSplitter
public MethodInvokingSplitter(java.lang.Object object,
java.lang.reflect.Method method)
MethodInvokingSplitter
public MethodInvokingSplitter(java.lang.Object object,
java.lang.String methodName)
MethodInvokingSplitter
public MethodInvokingSplitter(java.lang.Object object)
afterPropertiesSet
public void afterPropertiesSet()
throws java.lang.Exception
- Specified by:
afterPropertiesSet
in interface org.springframework.beans.factory.InitializingBean
- Throws:
java.lang.Exception
splitMessage
protected java.lang.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