Spring Tips: A Gentle introduction to Spring Integration

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ต.ค. 2024

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

  • @sunnykhetan
    @sunnykhetan 2 ปีที่แล้ว +4

    As gentle as an introduction could be.

  • @RishiRaj-wq7xd
    @RishiRaj-wq7xd ปีที่แล้ว

    Great work! Appreciated! It's very helpful to all.

  • @klarusdetro1544
    @klarusdetro1544 5 ปีที่แล้ว +4

    JoshIsTheBestTutorIloveThisVidsThanksPivotal👍

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

    Great presentation Josh!

  • @trapslime16
    @trapslime16 4 ปีที่แล้ว +11

    Can it be more complicated?

  • @sergenikitin2134
    @sergenikitin2134 8 ปีที่แล้ว +23

    so many new complicated abstractions (

  • @haridaniel777
    @haridaniel777 7 ปีที่แล้ว

    Is there any reason why the fluent builder is NOT TYPE SAFE? FE: Java 8 stream API also type safe even using lambdas...

  • @alexsouza22
    @alexsouza22 7 ปีที่แล้ว +2

    Any chance of having this source code?

  • @privettoli
    @privettoli 8 ปีที่แล้ว +3

    File is an old API that should not be used. Use NIO instead

    • @qingcaish
      @qingcaish 5 ปีที่แล้ว

      any problem with old FILE api ?

  • @souravpati9832
    @souravpati9832 6 ปีที่แล้ว

    why file example? the common use case is reading data from different databases right?

    • @df-hh7yd
      @df-hh7yd 5 ปีที่แล้ว

      You don't need spring integration for that.

  • @aprofromuk
    @aprofromuk 8 ปีที่แล้ว

    josh's name in bengali for the slides - যশ লং :)

  • @RuskiTraktor
    @RuskiTraktor 7 ปีที่แล้ว +9

    Output to a local ftp server is so unnecesary for a introduction video. Should be done in as simple as possible manner, only to focus on 'Spring Integration' part.

    • @rmrfboy2951
      @rmrfboy2951 4 ปีที่แล้ว

      so much for being "gentle". lol

    • @RuskiTraktor
      @RuskiTraktor 4 ปีที่แล้ว

      @@rmrfboy2951 nobody promised it will be gentle.. at least honest and providing feedback how to do it better next time:)

  • @milanfaizal
    @milanfaizal 7 ปีที่แล้ว

    How do we run an FTP Server on a machine so that I can send files from my machine to another over ftp

    • @df-hh7yd
      @df-hh7yd 5 ปีที่แล้ว

      sudo apt-get install ftpserver

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

    No good for Spring Boot 2.0.1.RELEASE. Can't find handleWithAdapter in IntegrationFlowDefinition anymore

    • @arkowski
      @arkowski 6 ปีที่แล้ว

      You can change handleWithAdapter(...) into handle(...)
      Here is AMQP example:
      OLD:
      handleWithAdapter(a -> a.amqp(amqpTemplate).exchangeName(this.asci))
      NEW:
      handle(Amqp.outboundAdapter(amqp).routingKey(this.ascii))
      You can do it the same with FTP from this tutorial.

    • @raabisliman
      @raabisliman 4 หลายเดือนก่อน

      Use handle function instead