The Reactive Revolution • Josh Long • YOW! 2019

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.ย. 2023
  • This presentation was recorded at YOW! 2019. #GOTOcon #YOW
    yowcon.com
    Josh Long - Spring Developer Advocate at Pivotal, Java Champion & Author of 6 books ‪@coffeesoftware‬
    RESOURCES
    / starbuxman
    / joshlong
    mastodon.online/@starbuxman
    bootifulpodcast.fm
    joshlong.com
    www.biodrop.io/joshlong
    ABSTRACT
    #Microservices and #BigData increasingly confront us with the limitations of traditional input/output. In traditional IO, work that is IO-bound dominates threads. This wouldn't be such a big deal if we could add more threads cheaply, but threads are expensive on the #JVM, and most other platforms. Even if threads were cheap and infinitely scalable, we'd still be confronted with the faulty nature of networks. Things break, and they often do so in subtle, but non-exceptional ways. Traditional approaches to integration bury the faulty nature of networks behind overly simplifying abstractions. We need something better.
    #SpringFramework 5 is here! It introduces the #Spring developer to a growing world of support for reactive programming across the Spring portfolio, starting with a new Netty-based web runtime, component model and module called Spring #WebFlux, and then continuing to Spring #DataKay, Spring Security 5.0, Spring Boot 2.0 and Spring Cloud Finchley. Sure, it sounds like a lot, but don't worry! Join me, your guide, Spring developer advocate Josh Long, and we'll explore the wacky, wonderful world of Reactive Spring together. [...]
    RECOMMENDED BOOKS
    Josh Long • Reactive Spring • amzn.to/3EkbRm9
    Josh Long & Kenny Bastani • Cloud Native Java • amzn.to/3L4vvq3
    Josh Long & many more • Pro Spring Integration • amzn.to/3PlBv0j
    Josh Long & Steve Mayzak • Getting Started with Roo • amzn.to/3YVOfOj
    / gotocon
    / goto-
    / gotoconferences
    #Spring5 #SpringBoot2 #SpringSecurity #JoshLong #Starbuxman #Programming
    Looking for a unique learning experience?
    Attend the next GOTO conference near you! Get your ticket at gotopia.tech
    Sign up for updates and specials at gotopia.tech/newsletter
    SUBSCRIBE TO OUR CHANNEL - new videos posted almost daily.
    th-cam.com/users/GotoConf...
  • วิทยาศาสตร์และเทคโนโลยี

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

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

    If you are using Java for reactive (or any asynchronous) programming you are essentially using a hammer with a sharpened edge as a saw, and being told it is an amazing tool for cutting down trees - told by all the other people around you that have never used a real saw.

    • @hibcode
      @hibcode 7 หลายเดือนก่อน

      So you are talking about an axe to cut down a tree?

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

    I think Project Loom will kill most of the interest in reactive programming in Java because it will no longer be absolutely needed for max performance.

    • @--Nath--
      @--Nath-- 10 หลายเดือนก่อน

      Yeah, I have to wonder who would willingly go down that path if the jdk has magic built in.. Stack traces from hell, or just spin up a baby thread (virtual thread).

    • @robchr
      @robchr 10 หลายเดือนก่อน

      As far as I know, Project Loom doesn't provide an observable stream of values like an Observable or Flow. I think there will still be a need for libraries like RxJava for this use case.

    • @JohnDoe-bu3qp
      @JohnDoe-bu3qp 10 หลายเดือนก่อน

      @@robchr That's fair, I was thinking more of reactive Rest API code.

    • @danielv8971
      @danielv8971 7 หลายเดือนก่อน

      Update: Project Loom is great and all but the response times for Project Reactor are way better still because of its asynchronous nature.

    • @JohnDoe-bu3qp
      @JohnDoe-bu3qp 7 หลายเดือนก่อน

      @@danielv8971 That's interesting, I wonder if that is something that will be improved over time...