Home Java Integration

Integration

IntroductionChannels are used for routing messages to endpoints.Channels do the routing and endpoints perform the operations.Spring Integration (SI) provides numerous adapters for communication between different systems.SI uses 3 types of components to construct its messaging architecture:MessageChannelEndpointEndpoint > Channel (passes a Message) > EndpointSpring Integration mirrors everything from "Enterprise Integration Patterns"; so If you're familiar with those you can easily...
There is something interesting about Camel Routes.Usually they are defined in the beginning and assumed to have the same endpoints. But today I had a situation when depending on the .process() execution the result endpoint had to be dynamic.So after consulting with one of my colleagues I found the following solution: public class CustomRoute extends RouteBuilder {...