Spring Tips: Functional Reactive Endpoints with Spring Framework 5.0

Sdílet
Vložit
  • čas přidán 9. 07. 2024
  • Speaker: Josh Long
    / starbuxman
    Hi Spring fans! In this installment of Spring Tips, we'll look at the new Spring 5 functional reactive endpoints.
  • Věda a technologie

Komentáře • 13

  • @Subhrajyoti0001
    @Subhrajyoti0001 Před 7 lety +1

    amazing... Reactive web a long waited stuff, finally here...

  • @DepankerSharma
    @DepankerSharma Před 7 lety

    This was really nice tutorial, thanks Josh.

  • @eigbiremolenaugustine6737

    this is cool. Loving it....

  • @hamza201183
    @hamza201183 Před 7 lety +1

    Thanks, I love it !!!

  • @MarkHetherington
    @MarkHetherington Před 7 lety +1

    great talk!

  • @HallOfMemeYT
    @HallOfMemeYT Před 2 lety

    hello ,how do i get better in coding like you sir.please guide,programming practices and books you read,please share here. you are a god level coder

  • @MrSenussi88
    @MrSenussi88 Před 7 lety

    Nice talk, would you please tell me how to handle static resources?

  • @JesseQuickEats
    @JesseQuickEats Před 7 lety

    The type Stream is not generic; it cannot be parameterized with arguments ?

  • @ibarrajuan
    @ibarrajuan Před 5 lety

    Nice demo, how enable the springfox swagger in this demo, springfox works whit Spring MVC, can any help me?

  • @nullpointerE
    @nullpointerE Před 7 lety +1

    I'm seriously hyped now! Will this work seamlessly with RxJava too?

    • @JoshLong
      @JoshLong Před 7 lety

      yes! I didn't even get to look at the rest of the reactive story in Spring Framework 5. This is, specifically, the functional reactive endpoints. Glad you enjoyed it!

  • @CharlesRay87
    @CharlesRay87 Před 7 lety +2

    Nice demo, but I don't get a point why we really need it? Comparing to classic Spring Web application, reactive version behaves much worse under regular load generated using Apache Bench.

    • @zedisdeadz
      @zedisdeadz Před 6 lety

      2 things that come from the top of my head. I'm sure there are more.
      1 it is asynchronous by design so you the client does not have to wait for the result.
      2 you can have back pressure which means that you can tell the server that I want to load results 5 at a time. this way you implement the infinite scrolling that you see in facebook feed, youtube comments, twitter feed etc