How to use Apache Camel Bean Component? Full hands on workshop.

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

ความคิดเห็น • 15

  • @rdhaundiyal1
    @rdhaundiyal1 ปีที่แล้ว +1

    Thanks @saggu, great tutorial again, you have explained it in a very simple and "to the point" way. Not being from java background, could understand it very easily.

  • @anshraina7302
    @anshraina7302 10 หลายเดือนก่อน +1

    Thanks Saggu this was a very nice workshop. I would like a series of building a real world project that uses apache camel and its various components. That way we would get an idea what is the best way of adapting apache camel in a real world project. Thanks a lot!

  • @gauravkumarmnnit
    @gauravkumarmnnit ปีที่แล้ว +1

    Please create an tutorial on camel context also really great video keep creating your way of explaining is perfect!

  • @User-SS-bm2xk
    @User-SS-bm2xk ปีที่แล้ว +1

    Thank you for uploading the videos. Your teaching is truly amazing. I appreciate all the effort you put into creating such helpful content.

  • @tylerwal
    @tylerwal 10 หลายเดือนก่อน +1

    Thanks @saggu, great video. I really like your style and method of going over logic.

  • @SuperAdilMorocco
    @SuperAdilMorocco ปีที่แล้ว +1

    As always well explained

  • @SnizhanaKnysh-v2m
    @SnizhanaKnysh-v2m ปีที่แล้ว +1

    Thanks for the video! really great and structured explanation.
    p.s. dark mode is cool :)

  • @ashishmauryasiet
    @ashishmauryasiet 2 ปีที่แล้ว +1

    Hi Saggu, thanks for uploading the video

  • @ajeetkushwaha8811
    @ajeetkushwaha8811 ปีที่แล้ว +1

    Hi sir, It's really helpful video for me. Thank you!

  • @non_holy6286
    @non_holy6286 ปีที่แล้ว

    спасибо, ваши видео очень информативны!

  • @sairamkurmadasu9360
    @sairamkurmadasu9360 2 ปีที่แล้ว

    Sir, Can you please also teach XML DSL in depth....

  • @prathamkataria1088
    @prathamkataria1088 ปีที่แล้ว

    Hi sir,
    After you called the method that is inside the bean class,we had logger in our route…that is not called after method invocation. Can you help here to understand same.

    • @SagguUK
      @SagguUK  ปีที่แล้ว

      Is your logging level set correctly? For example if your logging level is WARN and you are trying to print DEBUG then application won't print anything .

  • @amitabhsharma2187
    @amitabhsharma2187 ปีที่แล้ว

    How to use loop in apche camel to get values from list and call end point

    • @SagguUK
      @SagguUK  ปีที่แล้ว

      You can try something like:
      from("direct:start")
      .process(exchange -> {
      List values = Arrays.asList("value1", "value2", "value3");
      for (String value : values) {
      exchange.getIn().setBody(value);
      // call endpoint for each value
      template.send("my-endpoint.com", exchange);
      }
      });