public class JobLaunchingGateway
extends org.springframework.integration.handler.AbstractReplyProducingMessageHandler
JobLaunchingGateway
is used to launch Batch Jobs. Internally it
delegates to a JobLaunchingMessageHandler
.messagingTemplate
EXPRESSION_PARSER, logger
Constructor and Description |
---|
JobLaunchingGateway(JobLauncher jobLauncher)
Constructor taking a
JobLauncher as parameter. |
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
handleRequestMessage(org.springframework.messaging.Message<?> requestMessage)
Launches a Batch Job using the provided request
Message . |
doInit, doInvokeAdvisedRequestHandler, getBeanClassLoader, getRequiresReply, handleMessageInternal, hasAdviceChain, onInit, setAdviceChain, setBeanClassLoader, setRequiresReply
addNotPropagatedHeaders, createOutputMessage, getNotPropagatedHeaders, getOutputChannel, isAsync, messageBuilderForReply, produceOutput, resolveErrorChannel, sendErrorMessage, sendOutput, sendOutputs, setAsync, setNotPropagatedHeaders, setOutputChannel, setOutputChannelName, setSendTimeout, shouldCopyRequestHeaders, shouldSplitOutput, updateNotPropagatedHeaders
configureMetrics, destroy, getActiveCount, getActiveCountLong, getComponentType, getDuration, getErrorCount, getErrorCountLong, getHandleCount, getHandleCountLong, getManagedName, getManagedType, getMaxDuration, getMeanDuration, getMetricsCaptor, getMinDuration, getOrder, getOverrides, getStandardDeviationDuration, handleMessage, isCountsEnabled, isLoggingEnabled, isStatsEnabled, onComplete, onError, onNext, onSubscribe, registerMetricsCaptor, reset, setCountsEnabled, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, setStatsEnabled
afterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanDescription, getBeanFactory, getBeanName, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, isInitialized, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
errorCount, handleCount
public JobLaunchingGateway(JobLauncher jobLauncher)
JobLauncher
as parameter.jobLauncher
- Must not be null.protected java.lang.Object handleRequestMessage(org.springframework.messaging.Message<?> requestMessage)
Message
. The payload
of the Message
must be an instance of JobLaunchRequest
.handleRequestMessage
in class org.springframework.integration.handler.AbstractReplyProducingMessageHandler
requestMessage
- must not be null.JobExecution
will always be returned. An
exception (MessageHandlingException
) will only be thrown if there
is a failure to start the job. The cause of the exception will be a
JobExecutionException
.org.springframework.messaging.MessageHandlingException
- when a job cannot be launched