Class CamelMessageHandler
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.MessageHandlerSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.handler.AbstractMessageProducingHandler
org.springframework.integration.handler.AbstractReplyProducingMessageHandler
org.springframework.integration.camel.outbound.CamelMessageHandler
- All Implemented Interfaces:
org.reactivestreams.Subscriber<Message<?>>
,Aware
,BeanClassLoaderAware
,BeanFactoryAware
,BeanNameAware
,DisposableBean
,InitializingBean
,ApplicationContextAware
,Ordered
,ExpressionCapable
,Orderable
,MessageProducer
,HeaderPropagationAware
,IntegrationPattern
,NamedComponent
,IntegrationManagement
,TrackableComponent
,MessageHandler
,reactor.core.CoreSubscriber<Message<?>>
A
MessageHandler
for calling Apache Camel route
and produce (optionally) a reply.
In the async mode, the ProducerTemplate.asyncSend(Endpoint, Exchange)
is used.
The request-reply behavior can be controlled via ExchangePattern
configuration
or per message. By default, this handler works in an ExchangePattern.InOnly
mode.
A default "mapping all headers" between Spring Integration and Apache Camel messages behavior
can be customized via setHeaderMapper(HeaderMapper)
option.
The target Apache Camel endpoint to call can be determined by the endpointUriExpression
.
By default, a ProducerTemplate.getDefaultEndpoint()
is used.
- Since:
- 6.0
- Author:
- Artem Bilan
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.integration.handler.AbstractReplyProducingMessageHandler
AbstractReplyProducingMessageHandler.RequestHandler
Nested classes/interfaces inherited from interface org.springframework.integration.support.management.IntegrationManagement
IntegrationManagement.ManagementOverrides
-
Field Summary
Fields inherited from class org.springframework.integration.handler.AbstractMessageProducingHandler
messagingTemplate
Fields inherited from class org.springframework.integration.context.IntegrationObjectSupport
EXPRESSION_PARSER, logger
Fields inherited from interface org.springframework.integration.support.management.IntegrationManagement
METER_PREFIX, RECEIVE_COUNTER_NAME, SEND_TIMER_NAME
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected final void
doInit()
protected Object
handleRequestMessage
(Message<?> requestMessage) Subclasses must implement this method to handle the request Message.void
setEndpointUri
(String endpointUri) Set Camel route endpoint uri to send a message.void
setEndpointUriExpression
(Expression endpointUriExpression) Set Camel route endpoint uri to send a message.void
setExchangePattern
(org.apache.camel.ExchangePattern exchangePattern) void
setExchangePatternExpression
(Expression exchangePatternExpression) void
setExchangeProperties
(Map<String, Object> exchangeProperties) void
setExchangePropertiesExpression
(Expression exchangePropertiesExpression) Set a SpEL expression to evaluateExchange
properties as aMap
.void
setHeaderMapper
(HeaderMapper<org.apache.camel.Message> headerMapper) Set aHeaderMapper
to map request message headers into Apache Camel message headers and back if request-reply exchange pattern is used.void
setRoute
(org.apache.camel.builder.LambdaRouteBuilder route) Set aLambdaRouteBuilder
to add an inline Camel route definition.Methods inherited from class org.springframework.integration.handler.AbstractReplyProducingMessageHandler
doInvokeAdvisedRequestHandler, getBeanClassLoader, getIntegrationPatternType, getRequiresReply, handleMessageInternal, hasAdviceChain, onInit, setAdviceChain, setBeanClassLoader, setRequiresReply
Methods inherited from class org.springframework.integration.handler.AbstractMessageProducingHandler
addNotPropagatedHeaders, createOutputMessage, getNotPropagatedHeaders, getOutputChannel, isAsync, messageBuilderForReply, produceOutput, resolveErrorChannel, sendErrorMessage, sendOutput, sendOutputs, setAsync, setNotPropagatedHeaders, setOutputChannel, setOutputChannelName, setSendTimeout, setupMessageProcessor, shouldCopyRequestHeaders, shouldSplitOutput, updateNotPropagatedHeaders
Methods inherited from class org.springframework.integration.handler.AbstractMessageHandler
handleMessage, onComplete, onError, onNext, onSubscribe, setObservationConvention
Methods inherited from class org.springframework.integration.handler.MessageHandlerSupport
buildSendTimer, destroy, getComponentType, getManagedName, getManagedType, getMetricsCaptor, getObservationRegistry, getOrder, getOverrides, isLoggingEnabled, isObserved, registerMetricsCaptor, registerObservationRegistry, sendTimer, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, shouldTrack
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport
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
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface reactor.core.CoreSubscriber
currentContext
Methods inherited from interface org.springframework.integration.support.management.IntegrationManagement
getThisAs
Methods inherited from interface org.springframework.integration.support.context.NamedComponent
getBeanName, getComponentName
-
Constructor Details
-
CamelMessageHandler
public CamelMessageHandler() -
CamelMessageHandler
public CamelMessageHandler(org.apache.camel.ProducerTemplate producerTemplate)
-
-
Method Details
-
setEndpointUri
Set Camel route endpoint uri to send a message. Mutually exclusive withsetEndpointUriExpression(Expression)
andsetRoute(LambdaRouteBuilder)
.- Parameters:
endpointUri
- the Camel route endpoint to send a message.
-
setEndpointUriExpression
Set Camel route endpoint uri to send a message. Mutually exclusive withsetEndpointUri(String)
andsetRoute(LambdaRouteBuilder)
.- Parameters:
endpointUriExpression
- the SpEL expression to determine a Camel route endpoint to send a message.
-
setRoute
public void setRoute(org.apache.camel.builder.LambdaRouteBuilder route) Set aLambdaRouteBuilder
to add an inline Camel route definition. Can be used as a lambdarb -> rb.from("direct:inbound").bean(MyBean.class)
or reference to external instance. Mutually exclusive withsetEndpointUri(String)
andsetEndpointUriExpression(Expression)
. The endpoint to send a message is extracted from the targetRouteBuilder
.- Parameters:
route
- theLambdaRouteBuilder
to use.
-
setExchangePattern
public void setExchangePattern(org.apache.camel.ExchangePattern exchangePattern) -
setExchangePatternExpression
-
setHeaderMapper
Set aHeaderMapper
to map request message headers into Apache Camel message headers and back if request-reply exchange pattern is used.- Parameters:
headerMapper
- theHeaderMapper
to use.
-
setExchangeProperties
-
setExchangePropertiesExpression
Set a SpEL expression to evaluateExchange
properties as aMap
.- Parameters:
exchangePropertiesExpression
- the expression for exchange properties.
-
doInit
protected final void doInit()- Overrides:
doInit
in classAbstractReplyProducingMessageHandler
-
handleRequestMessage
Description copied from class:AbstractReplyProducingMessageHandler
Subclasses must implement this method to handle the request Message. The return value may be a Message, a MessageBuilder, or any plain Object. The base class will handle the final creation of a reply Message from any of those starting points. If the return value is null, the Message flow will end here.- Specified by:
handleRequestMessage
in classAbstractReplyProducingMessageHandler
- Parameters:
requestMessage
- The request message.- Returns:
- The result of handling the message, or
null
.
-