Spring Integration

Spring Integration

Description: Represents the component that manages SpringIntegrationEndpoint.
Scheme: spring-integration
Syntax: spring-integration:defaultChannel
Maven: org.apache.camel/camel-spring-integration/2.16.1

Defines the Spring Integration Endpoint

Name Kind Group Required Default Type Enum Description
defaultChannel path common true java.lang.String The default channel name which is used by the Spring Integration Spring context. It will equal to the inputChannel name for the Spring Integration consumer and the outputChannel name for the Spring Integration provider.
inOut parameter common boolean The exchange pattern that the Spring integration endpoint should use. If inOut=true then a reply channel is expected, either from the Spring Integration Message header or configured on the endpoint.
inputChannel parameter consumer java.lang.String The Spring integration input channel name that this endpoint wants to consume from Spring integration.
outputChannel parameter producer java.lang.String The Spring integration output channel name that is used to send messages to Spring integration.
exchangePattern parameter advanced InOnly org.apache.camel.ExchangePattern InOnly
RobustInOnly
InOut
InOptionalOut
OutOnly
RobustOutOnly
OutIn
OutOptionalIn
Sets the default exchange pattern when creating an exchange
synchronous parameter advanced false boolean Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).

spring-integration consumer

A consumer of exchanges for the Spring Integration Please specify the inputChannel in the endpoint url for this consumer. If the message pattern is inOut, the outputChannel property should be set for the outgoing message.