Class JmsMessageDrivenChannelAdapterSpec<S extends JmsMessageDrivenChannelAdapterSpec<S>>
java.lang.Object
org.springframework.integration.dsl.IntegrationComponentSpec<S,P>
org.springframework.integration.dsl.MessageProducerSpec<S,JmsMessageDrivenEndpoint>
org.springframework.integration.jms.dsl.JmsMessageDrivenChannelAdapterSpec<S>
- Type Parameters:
S
- the targetJmsMessageDrivenChannelAdapterSpec
implementation type.
- All Implemented Interfaces:
DisposableBean
,FactoryBean<JmsMessageDrivenEndpoint>
,InitializingBean
,Lifecycle
,Phased
,SmartLifecycle
- Direct Known Subclasses:
JmsMessageDrivenChannelAdapterSpec.JmsMessageDrivenChannelAdapterListenerContainerSpec
public class JmsMessageDrivenChannelAdapterSpec<S extends JmsMessageDrivenChannelAdapterSpec<S>>
extends MessageProducerSpec<S,JmsMessageDrivenEndpoint>
- Since:
- 5.0
- Author:
- Artem Bilan, Gary Russell
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
JmsMessageDrivenChannelAdapterSpec.JmsMessageDrivenChannelAdapterListenerContainerSpec<S extends JmsListenerContainerSpec<S,
C>, C extends AbstractMessageListenerContainer> -
Field Summary
Fields inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
logger, PARSER, target
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
ModifierConstructorDescriptionprotected
JmsMessageDrivenChannelAdapterSpec
(AbstractMessageListenerContainer listenerContainer) -
Method Summary
Modifier and TypeMethodDescriptionextractPayload
(boolean extractRequestPayload) headerMapper
(JmsHeaderMapper headerMapper) jmsMessageConverter
(MessageConverter messageConverter) recoveryCallback
(org.springframework.retry.RecoveryCallback<Message<?>> recoveryCallback) Set aRecoveryCallback
when using retry within the adapter.retryTemplate
(org.springframework.retry.support.RetryTemplate retryTemplate) Set aRetryTemplate
to use for retrying a message delivery within the adapter.shutdownContainerOnStop
(boolean shutdown) Set to 'false' to prevent listener container shutdown when the endpoint is stopped.Methods inherited from class org.springframework.integration.dsl.MessageProducerSpec
autoStartup, errorChannel, errorChannel, errorMessageStrategy, id, observationConvention, outputChannel, outputChannel, phase, role, sendTimeout, shouldTrack
Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, afterPropertiesSet, destroy, doGet, getId, getObject, getObjectType, getPhase, isAutoStartup, isRunning, start, stop, stop
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.FactoryBean
isSingleton
-
Constructor Details
-
JmsMessageDrivenChannelAdapterSpec
-
-
Method Details
-
jmsMessageConverter
- Parameters:
messageConverter
- the messageConverter.- Returns:
- the spec.
- See Also:
-
headerMapper
- Parameters:
headerMapper
- the headerMapper.- Returns:
- the spec.
- See Also:
-
extractPayload
- Parameters:
extractRequestPayload
- the extractRequestPayload.- Returns:
- the spec.
- See Also:
-
shutdownContainerOnStop
Set to 'false' to prevent listener container shutdown when the endpoint is stopped. Then, if so configured, any cached consumer(s) in the container will remain. Otherwise, the shared connection and will be closed and the listener invokers shut down; this behavior is new starting with version 5.1. Default: true.- Parameters:
shutdown
- false to not shutdown.- Returns:
- the spec.
- Since:
- 5.1
-
retryTemplate
Set aRetryTemplate
to use for retrying a message delivery within the adapter. Unlike adding retry at the container level, this can be used with anErrorMessageSendingRecoverer
RecoveryCallback
to publish to the error channel after retries are exhausted. You generally should not configure an error channel when using retry here, use aRecoveryCallback
instead.- Parameters:
retryTemplate
- the template.- Since:
- 6.3
- See Also:
-
recoveryCallback
Set aRecoveryCallback
when using retry within the adapter.- Parameters:
recoveryCallback
- the callback.- Since:
- 6.3
- See Also:
-