public class AmqpInboundGateway extends MessagingGatewaySupport
| Modifier and Type | Class and Description |
|---|---|
protected class |
AmqpInboundGateway.Listener |
IntegrationManagement.ManagementOverridesmessagingTemplatelifecycleCondition, lifecycleLockEXPRESSION_PARSER, loggerMETER_PREFIX, RECEIVE_COUNTER_NAME, SEND_TIMER_NAMEDEFAULT_PHASE| Constructor and Description |
|---|
AmqpInboundGateway(AbstractMessageListenerContainer listenerContainer) |
AmqpInboundGateway(AbstractMessageListenerContainer listenerContainer,
AmqpTemplate amqpTemplate)
Construct
AmqpInboundGateway based on the provided AbstractMessageListenerContainer
to receive request messages and AmqpTemplate to send replies. |
| Modifier and Type | Method and Description |
|---|---|
protected void |
doStart()
Subclasses must implement this method with the start behavior.
|
protected void |
doStop()
Subclasses must implement this method with the stop behavior.
|
String |
getComponentType()
Subclasses may implement this method to provide component type information.
|
protected AttributeAccessor |
getErrorMessageAttributes(Message<?> message)
Populate an
AttributeAccessor to be used when building an error message
with the errorMessageStrategy. |
protected void |
onInit()
Subclasses may implement this for initialization logic.
|
void |
setDefaultReplyTo(String defaultReplyTo)
The
defaultReplyTo address with the form
(exchange)/(routingKey) |
void |
setHeaderMapper(AmqpHeaderMapper headerMapper) |
void |
setMessageConverter(MessageConverter messageConverter)
Specify the
MessageConverter to convert request and reply to/from Message. |
void |
setRecoveryCallback(org.springframework.retry.RecoveryCallback<? extends Object> recoveryCallback)
Set a
RecoveryCallback when using retry within the gateway. |
void |
setRetryTemplate(org.springframework.retry.support.RetryTemplate retryTemplate)
Set a
RetryTemplate to use for retrying a message delivery within the
gateway. |
buildErrorMessage, getErrorChannel, getManagedName, getManagedType, getMessageCount, getMessageCountLong, getOverrides, getReplyChannel, getRequestChannel, isCountsEnabled, isLoggingEnabled, receive, receive, receiveMessage, receiveMessage, registerReplyMessageCorrelatorIfNecessary, reset, send, sendAndReceive, sendAndReceiveMessage, sendAndReceiveMessageReactive, setCountsEnabled, setErrorChannel, setErrorChannelName, setErrorMessageStrategy, setLoggingEnabled, setManagedName, setManagedType, setReplyChannel, setReplyChannelName, setReplyMapper, setReplyTimeout, setRequestChannel, setRequestChannelName, setRequestMapper, setRequestTimeout, setShouldTrackdestroy, doStop, getPhase, getRole, isAutoStartup, isRunning, setAutoStartup, setPhase, setRole, start, stop, stopafterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanFactory, getBeanName, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, isInitialized, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetBeanName, getComponentNamemessageCountdestroy, registerMetricsCaptorpublic AmqpInboundGateway(AbstractMessageListenerContainer listenerContainer)
public AmqpInboundGateway(AbstractMessageListenerContainer listenerContainer, AmqpTemplate amqpTemplate)
AmqpInboundGateway based on the provided AbstractMessageListenerContainer
to receive request messages and AmqpTemplate to send replies.listenerContainer - the AbstractMessageListenerContainer to receive AMQP messages.amqpTemplate - the AmqpTemplate to send reply messages.public void setMessageConverter(MessageConverter messageConverter)
MessageConverter to convert request and reply to/from Message.
If the amqpTemplate is explicitly set, this MessageConverter
isn't populated there. You must configure that external amqpTemplate.messageConverter - the MessageConverter to use.public void setHeaderMapper(AmqpHeaderMapper headerMapper)
public void setDefaultReplyTo(String defaultReplyTo)
defaultReplyTo address with the form
(exchange)/(routingKey)or
(queueName)if the request message doesn't have a
replyTo property.
The second form uses the default exchange ("") and the queue name as
the routing key.defaultReplyTo - the default replyTo address to use.Addresspublic void setRetryTemplate(org.springframework.retry.support.RetryTemplate retryTemplate)
RetryTemplate to use for retrying a message delivery within the
gateway. Unlike adding retry at the container level, this can be used with an
ErrorMessageSendingRecoverer RecoveryCallback to publish to the
error channel after retries are exhausted. You generally should not configure an
error channel when using retry here, use a RecoveryCallback instead.retryTemplate - the template.setRecoveryCallback(RecoveryCallback)public void setRecoveryCallback(org.springframework.retry.RecoveryCallback<? extends Object> recoveryCallback)
RecoveryCallback when using retry within the gateway.recoveryCallback - the callback.setRetryTemplate(RetryTemplate)public String getComponentType()
IntegrationObjectSupportgetComponentType in interface NamedComponentgetComponentType in class MessagingGatewaySupportprotected void onInit()
IntegrationObjectSupportonInit in class MessagingGatewaySupportprotected void doStart()
AbstractEndpointAbstractEndpoint.lifecycleLock.doStart in class MessagingGatewaySupportprotected void doStop()
AbstractEndpointAbstractEndpoint.lifecycleLock.doStop in class MessagingGatewaySupportprotected AttributeAccessor getErrorMessageAttributes(Message<?> message)
MessagingGatewaySupportAttributeAccessor to be used when building an error message
with the errorMessageStrategy.getErrorMessageAttributes in class MessagingGatewaySupportmessage - the message.