Spring Tips: Testing Reactive Code

Sdílet
Vložit
  • čas přidán 9. 07. 2024
  • Hi Spring fans! In this installment of Spring Tips, we look at how to test reactive applications and microservices with TDD style, inside-out testing from component to contract.
    speaker: Josh Long
    / starbuxman
  • Věda a technologie

Komentáře • 8

  • @daru25able
    @daru25able Před 2 lety

    Thanks so much for posting this, helps a lot

  • @theRealSancar
    @theRealSancar Před 5 lety +1

    Great Video Josh, thanks for that.
    Btw in IntelliJ you can inject a language into the string, e.g. JSON @ 37:16 and then edit the Json String without having to escape all the quotes.

  • @h.mantri
    @h.mantri Před 3 lety +1

    At 34:40, why did you create constructor to populate webClient field in ReservationClient? Can't we simply autowire webClient since we have already created a @Bean of WebClient in the main application class?

  • @h.mantri
    @h.mantri Před 3 lety

    I see a tooltip at the bottom of the video whenever you press a keyboard shortcut. How did you do that? Is it an IntelliJ feature?

  • @thomasandolf7365
    @thomasandolf7365 Před 5 lety

    love the nyan cat progress bar... i want it

    • @theRealSancar
      @theRealSancar Před 5 lety

      It's in the plugins marketplace of IntelliJ

  • @sinurao1017
    @sinurao1017 Před 3 lety

    Could you share the github link for this tutorial?

  • @BDGKruger
    @BDGKruger Před 4 lety

    Hi Josh, thank you for the video. The first test that I did with the reactive mongo db fails with "No server chosen by com.mongodb.async.client.ClientSessionHelper$1@45e140ae from cluster description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, serverDescriptions=[ServerDescription{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/0:0:0:0:0:0:0:1:27017}, caused by {java.net.ConnectException: Connection refused}}]}. Waiting for 30000 ms before timing out". I have searched for a solution but don't find any. Can you point me in right direction please. Thank you, Brandt.