Apache Camel : “direct:start” endpoint - what does it mean ?

前端 未结 7 654
既然无缘
既然无缘 2021-02-02 05:38

I\'m new to Apache Camel. Can someone explain what \"direct:start\" means in Camel. Please see

http://camel.apache.org/http

from(\"direct:start\")
.to(         


        
相关标签:
7条回答
  • 2021-02-02 06:11

    Assume like the direct route as a method with name start , so we need to call the start method /direct route to perform certain operation. The below example will help .

    The first route will be triggered when an input file is available in XXXX location and when it reaches line , the actual flow will go to second route. Basically the direct route with from endpoint will be triggered by some producer endpoint.

    <route id="fileRoute">
       <from uri="file:XXXX">
          ..
       <to uri="direct:start">
    </route>
    
    <route id="directStartRoute">
        <from uri="direct:start">
        <to uri="http://myhost/mypath">
    </route>
    
    0 讨论(0)
  • 2021-02-02 06:20

    The "direct:start" above is simply saying that the route starts with a Direct Component named "start".

    The direct endpoint provides synchronous invocation of a route. If you want to send an Exchange to the direct:start endpoint you would create a ProducerTemplate and use the various send methods.

    ProducerTemplate template = context.createProducerTemplate();
    
    template.sendBody("direct:start", "This is a test message");
    

    There is nothing special about the name start. It is simply the name you are going to use when referring to the endpoint and could have just as easily been direct:foo.

    0 讨论(0)
  • 2021-02-02 06:20

    forget about start. start is just a name of a halt point (direct).

    Direct component can be take as a bridge between routes in same context.

    0 讨论(0)
  • 2021-02-02 06:25

    direct:start provides synchronous ways to communicate between 2 endpoints and this is only been used if you want to communicate using camel messages and not generic file or xml messages.

    0 讨论(0)
  • 2021-02-02 06:28

    Apache Camel direct is basically for sending Exchange from one route to another in SAME Camel context. So let’s say you are getting message from AMQ and you want to populate headers for every message you get and then send it to mail recipient list. So here you need to create new router which has following description

    from(“direct:populateHeaders”)
    .setHeader(“myHeader”, “myHeaderValue”)
    .end()
    

    And from any route you can send your Exchange object to this route by writing

    ...
    
    .to(“direct:populateHeaders”)
    
    ...
    

    Its important to keep in mind that this will not work out of your Camel Context.

    0 讨论(0)
  • 2021-02-02 06:29

    Consider it like this : There are two things whenever you are sending a message to camel route. 1. The URI scheme, which defines how your message is going to be delivered. And to which component type it is going to be delivered. 2. URI path, which defines the instance of that component.

    Now, to your direct:start location. 'direct' tells that this message should send synchronously to the Direct Component. 'start' tells which instance of the Direct Component this message should be delivered.

    Importance of different URI path: Now consider if you are having to different routes. And wants to produce message from two different threads synchronously. Using 'direct:start' as start point for the routes will not work. Unless you are having some conditional processing component, forget this if you are beginner. For, successfully deliver the messages to both the routes , you will have to add 2 entries i.e. 'direct:somename1' and 'direct:somename2'. 'start' is not a mandatory thing , you can give whatever name you like to.

    I recommend you to read some chapters from Martin Fowler's EIP books. It is a wonderful resource to begin with. This will make you very easy to understand Camel.

    0 讨论(0)
提交回复
热议问题