Spring Boot Rest Client Interceptors

Поделиться
HTML-код
  • Опубликовано: 26 сен 2024

Комментарии • 18

  • @thelanelim92
    @thelanelim92 8 месяцев назад +8

    Hi Dan, this is a bit more advanced, thanks… it’s nice to see this type of content in a sea of hello world examples which take you nowhere. ❤

  • @varunbhardwaj2267
    @varunbhardwaj2267 8 месяцев назад +3

    Dan thanks for another wonderful insight about RestClient. Only expectation from many developers is Spring Boot can provide the necessary Infrastructure to support commonly used interceptors under the hood such as JWT token propagation, Oauth related mechanisms..etc. Webclient already has such functionality through builder pipeline. Hope this could be considered in future release for RestClient

  • @pad5724
    @pad5724 8 месяцев назад +1

    Rest client will be my main topic for February! Thank you Dan

  • @technogeek8306
    @technogeek8306 8 месяцев назад

    Thank you Dan for uploading the tutorial. This is very helpful.
    Simple use case wherein we can use this: Logging request type, url and response time which is very useful while debugging something in production.
    For me, something more to explore:
    Understanding how rest client interceptor behaves when we get 4xx, 5xx and timeout errors.

  • @PranavInamdar-g2c
    @PranavInamdar-g2c 2 месяца назад

    Thanks dan for sharing the knowledge. Really helpful!!

  • @calintamas7576
    @calintamas7576 8 месяцев назад +2

    Thx, Dan for this video!

  • @dflachbart
    @dflachbart 8 месяцев назад +3

    Thanks Dan for your videos!! Very excited about the new Rest Client in 3.2, so appreciate your various tutorials about it... For a long time everyone was saying that the RestTemplate is going to be deprecated (which now doesn't really seem true any more right?), so we moved on to using the WebFlux WebClient in every new project. To be honest I was never really happy about it, it always kind of felt wrong to use a reactive tool and just tack on a '.block()' to use it synchronously.... 😉 But now with the Rest Client it seems we have a nice and modern alternative again that I will try to advocate for in our new projects!
    On a side note, do you happen to know if Spring Boot 3.2 supports automatic Observability instrumentation for the Rest Client like it does for the WebClient? We just started just using Observability in our projects and this would be great...

  • @SaurabhSingh-q4v
    @SaurabhSingh-q4v 8 месяцев назад

    Very informative
    Thank you Dan

  • @EricSouzarys
    @EricSouzarys 8 месяцев назад +2

    Thanks for the video. Do you have any documentation link on how to use interceptors to deal with authencation based on tokens that need to be refreshed after expires?

  • @maneshipocrates2264
    @maneshipocrates2264 8 месяцев назад

    Thanks for the video.

  • @georgigeorgiev9859
    @georgigeorgiev9859 Месяц назад

    What about a global response interceptor - for example to log a certain header.

  • @ainigma100
    @ainigma100 29 дней назад

    Thank you for the video Dan! Is it possible to read the response body of the interceptor?
    I was trying to read the response body but I was not able to do that.
    ClientHttpResponse response = execution.execute(request, body);
    Does anyone know how to do it? Assume that for auditing purpose I want to save in the database the request details and the response details (headers, path variables, query params, response body etc.)
    Thank you in advance!

  • @haroldpepete
    @haroldpepete 8 месяцев назад +1

    in some.videos you're a java champion and in others a spring developer, what is your secret identity?

  • @markkuuss
    @markkuuss 7 месяцев назад

    Hey Dan, do you have paid courses in plateforms like Pluralsight or Udemy?

  • @er.sahilmd
    @er.sahilmd 7 месяцев назад

    The link for github are wrong

  • @Nothing_Else_Matters
    @Nothing_Else_Matters 8 месяцев назад

    Thank you.. it is very helpful

  • @matadorxp1
    @matadorxp1 7 месяцев назад

    Nice video!!