Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.이 콘텐츠는 선택한 언어로 제공되지 않습니다.
A.10. Static Routing Slip
Overview 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
The static routing slip pattern in the ServiceMix EIP component is used to route an InOut message exchange through a series of endpoints. Semantically, it is equivalent to the pipeline pattern in Apache Camel.
Example ServiceMix EIP route 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Example A.19, “ServiceMix EIP Static Routing Slip” shows how to define a static routing slip using the ServiceMix EIP component. Incoming messages pass through each of the endpoints,
test:procA
, test:procB
, and test:procC
, where the output of each endpoint is connected to the input of the next endpoint in the chain. The final endpoint, test:procC
, sends its output (Out message) back to the caller.
Example A.19. ServiceMix EIP Static Routing Slip
Equivalent Apache Camel XML route 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Example A.20, “Apache Camel Static Routing Slip Using XML” shows how to define an equivalent route using Apache Camel XML configuration.
Example A.20. Apache Camel Static Routing Slip Using XML
Equivalent Apache Camel Java DSL route 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Example A.21, “Apache Camel Static Routing Slip Using Java DSL” shows how to define an equivalent route using the Apache Camel Java DSL.
Example A.21. Apache Camel Static Routing Slip Using Java DSL
from("jbi:endpoint:http://progress.com/demos/test/routingSlip/endpoint"). pipeline("jbi:service:http://progress.com/demos/test/procA", "jbi:service:http://progress.com/demos/test/procB", "jbi:service:http://progress.com/demos/test/procC");
from("jbi:endpoint:http://progress.com/demos/test/routingSlip/endpoint").
pipeline("jbi:service:http://progress.com/demos/test/procA",
"jbi:service:http://progress.com/demos/test/procB",
"jbi:service:http://progress.com/demos/test/procC");