13 Using WebClient to make API calls - Spring Boot Microservices Level 1

  Рет қаралды 383,714

Java Brains

Java Brains

Күн бұрын

Пікірлер: 141
@bazar9000
@bazar9000 3 жыл бұрын
Sync and Async are like in the post office. Sync - When you go to take your package you wait inline till your number comes and then you are served (wasting time and stopping all your daily tasks). Async - you get your number via SMS and you keep with the rest of the day and when your turn arrives you get a message on your phone to come and get your package.
@jasper5016
@jasper5016 2 жыл бұрын
Wonderful analogy. Thanks
@Stannis24
@Stannis24 4 ай бұрын
man this is a gold mine even if is 5 years old, really good explanation
@paracha3
@paracha3 3 жыл бұрын
He is really good teacher. Very unique style of explaining.
@JayPatel12928
@JayPatel12928 2 жыл бұрын
Just one correction I guess. 10:51 here the word "Mono" doesn’t really refer to the promise aspect of the async call, rather as the name suggests, all it means is the response value, if at all, is going to be a singular value and not a list of values (which again is called "Flux" in this whole sping reactive web ecosystem). This distinction is very important to the functional programming paradigm and hence its introduction to this ecosystem as well.
@user-nh8ge6hx9r
@user-nh8ge6hx9r Жыл бұрын
you can get a List as a Mono
@ltmikepick
@ltmikepick 3 жыл бұрын
These days when workshops could be made with other people in the same room....So great...So good...
@Manuel-ug5fg
@Manuel-ug5fg 10 ай бұрын
You couldn't have explained it better. Thanks!
@haimmichalashvili8251
@haimmichalashvili8251 4 жыл бұрын
You are awsome, thanks for taking care of teaching us the new way of WebClient instead of using the deprecated RestPattern :)
@shashankfuley6455
@shashankfuley6455 3 жыл бұрын
This channel has the most distracting content , when ever I visit this channel looking for a solution , I always get carried away by the content that is not necessary for that particular instance of time . Great Work!!!!!
@kartikeytiwari3574
@kartikeytiwari3574 11 ай бұрын
so tru😂
@eirikbremnes2860
@eirikbremnes2860 5 жыл бұрын
Awesome tutorial....you're great as always! Txs :)
@DevCurioso
@DevCurioso 5 жыл бұрын
Cant wait for the workshop with WebClient =D
@Guillotineman
@Guillotineman 5 жыл бұрын
like all your videos, right to the point, super well explained. QUALITY!
@pavankumar-si2jv
@pavankumar-si2jv 5 жыл бұрын
truely amazing tutorial!
@pramoddwivedi1640
@pramoddwivedi1640 2 жыл бұрын
Your are great Sir ,the way of teaching is awesome
@silentkiller4009
@silentkiller4009 3 жыл бұрын
Brilliant explanation !!
@orhanibm8270
@orhanibm8270 4 жыл бұрын
BodyToMono is like a McDonald's receipt. At the store when you order your food, the cashier prints out a receipt with an order number on it and hands it over to you (A promise that you will get your food). The order is routed to kitchen for preparation while you are waiting for your food to be cooked (A fetch, a db query, a file read in our case), and when the food is ready, the cashier calls your number and voila, you got your food (a db result, a json response from an api call). What I am not clear is what if request is rejected? Say my burger type is sold out and kitchen responds that we don't have such meat available anymore? How does it work in the case of BodyToMono?
@TahirHussainMir24
@TahirHussainMir24 4 жыл бұрын
Can we configure our producer api to send the result say JSON with some parameters set like 'error : cannot process the request because blah blah' and then at consumer side, the model will have that field which matches that parameter and gets built by bodyToMono?
@cihanseven6227
@cihanseven6227 4 жыл бұрын
Excellent work, you are a good man and I wish you the best.. Thank you very much.
@PhuongHuynh-qm5th
@PhuongHuynh-qm5th Жыл бұрын
Thanks for this great tutorial!
@Abhishek-tr4oi
@Abhishek-tr4oi 4 жыл бұрын
His shirt changed instantly. Wow that's magic😁.... btw loving this series so far.
@ujjwolbhandari
@ujjwolbhandari 5 жыл бұрын
Wonderful job! Thanks a lot for such a clear explanation.
@nbtpavankumar
@nbtpavankumar 4 жыл бұрын
Awesome explanation . Hope we have a Work Shop on the WebClient Async ....
@JonathanLennartson
@JonathanLennartson 3 жыл бұрын
Awesome tutorial! Great teaching!
@ujjwolbhandari
@ujjwolbhandari 5 жыл бұрын
Should we have created a WebClient bean with WebClient.builder().build() instead of a builder bean so that we would reuse that same instance of WebClient for all our api calls?
@jorgexfd
@jorgexfd 5 жыл бұрын
i have the same doubt
@SuperKako17
@SuperKako17 4 жыл бұрын
Yep, there's nothing request-specific to the client instance being built.
@ajayjiutube
@ajayjiutube 2 жыл бұрын
Check if that is thread safe, it is quite possible your instance is serving a request and it is handed over to next incoming request, it might get corrupted and you will get unexpected and unwanted results. Please reply your findings if you already have tried this, its been 2 years you asked this question.
@rajivjha123
@rajivjha123 5 жыл бұрын
Hi Kaushik, You have AsyncRestTemplate already for async calls . Can you please explain us the difference between ASyncRestTemplate Vs WebClient ?
@lkarthik1985
@lkarthik1985 3 жыл бұрын
Thanks lot for this excellent video
@AhmedKhaled-he9mf
@AhmedKhaled-he9mf 3 жыл бұрын
Very thanks for nice explain Please question, for call web service, as performance(fast, memory, CPU) which better, Client Jersey or WebClient Spring??
@saurabhkannawar
@saurabhkannawar Жыл бұрын
@Kaushik, when to use .block() and not to?
@GuitarreroDaniel
@GuitarreroDaniel 4 жыл бұрын
Amazing explanation, thank you very much. This seems easier than Retrofit.
@fernandonatividade5315
@fernandonatividade5315 5 жыл бұрын
Awesome content! It's perfect for who wants to learn a little bit about microservices
@NavedKhan-je7el
@NavedKhan-je7el 5 жыл бұрын
Awesome Kaushik, You are doing a great job.
@RudraBhattacharya2
@RudraBhattacharya2 5 жыл бұрын
Very good illustration..
@fsociety2871
@fsociety2871 4 жыл бұрын
Shouldn't be the return value of .build() from the web client builder specified as @Bean ? as invoking .build() will create instance every time a new request comes?
@neelamg3363
@neelamg3363 4 жыл бұрын
Awesome very nice !!
@nupuragrawal4406
@nupuragrawal4406 3 жыл бұрын
Please prepared a series on spring boot reactive programming
@imranshaikh115
@imranshaikh115 5 жыл бұрын
Very easy and straightforward , i like the way
@chebrolusowjanya3114
@chebrolusowjanya3114 Жыл бұрын
Can we make asynchronous call( using webclient) between two applications.
@Anoopegi
@Anoopegi 3 жыл бұрын
you are making singleton but what happen if a try to hit same end point at same point from different browsers?
@zr60
@zr60 2 жыл бұрын
How do I get back a collection of items? or a nested json object if the API collects that.
@prithvisharma3597
@prithvisharma3597 3 жыл бұрын
if i replace Movie.class in body to mono, to String.class, will it return me the string which i want ?
@hoanNguyen-lf8xr
@hoanNguyen-lf8xr 3 жыл бұрын
what's the benefit of using WebClient with block mechanism vs traditional RestTemplate?
@raveendrajonna4756
@raveendrajonna4756 3 жыл бұрын
Any playlist from Javabrain - on reactive programing
@sahildogra7843
@sahildogra7843 4 жыл бұрын
Is there any example of consuming https url using webclient ? Getting SSL erros.
@prakashgunjari1996
@prakashgunjari1996 3 жыл бұрын
Hi Kaushik..Can you please make a video on asynchronous and reactive programming
@harishjrao1257
@harishjrao1257 3 жыл бұрын
Very understandable, thanks
@sinfonico1984
@sinfonico1984 Жыл бұрын
To me the question is how you mock this web clients? for example with Mockito....
@yanshunji
@yanshunji 4 жыл бұрын
Thanks ! How can we get the status code of the response ? and why the webclient running very slow with my local Java 11 and spring 5 ?
@pulkitmalhotra7323
@pulkitmalhotra7323 3 жыл бұрын
Any example of Webclient with SSL (one way or two way SSL)?.
@rabithbo7089
@rabithbo7089 4 жыл бұрын
Big thanks to this man!
@tolulopeayemobola1446
@tolulopeayemobola1446 3 жыл бұрын
Hi thanks for your video. how does one include body in his request. I m using the init method to build my base url and then I am creating a method to do a get operation. I placed my headers as default in the init method and then I want to build a body in order to snd request to the token creation endpoint It doesnt seem smooth to me. How is it done?
@RakhiDhavale
@RakhiDhavale 3 жыл бұрын
nicely explained
@chetanr121
@chetanr121 Жыл бұрын
I wanted to know how to store the data after consuming the api to database
@muanomakhokha2929
@muanomakhokha2929 Жыл бұрын
Give this men a bells🥃
@ChetanVijay29
@ChetanVijay29 4 жыл бұрын
Kindly make playlist on reactive programming with web flux and mysql db
@ksk235
@ksk235 4 жыл бұрын
As of now, using web flux with mysql is futile. Mysql JDBC driver for Java is synchronous by default and last time I checked Oracle hasn't made any declaration about making an asynchronous JDBC driver for MySql. So You can actually use Web flux with MySql but the db calls won't be async. Although there's a workaround with a third party driver called Jasync but that's not very useful as you don't have Spring Data JPA support for that.
@anshulagarwal6682
@anshulagarwal6682 11 ай бұрын
How can we put request params and request body or header in api request from spring boot
@syedarbaz3781
@syedarbaz3781 2 жыл бұрын
I understand what you explained.. But how's it Asynchronous....how webclient is asynchronous....couldnt get....it's is still blocking and after getting result moving forward.....
@caesar5555
@caesar5555 5 жыл бұрын
AMAZING Workshop!!!!!!!!!!!! THANK YOU!!!!!!!!!!!
@praveenkumark772
@praveenkumark772 4 жыл бұрын
How to cache the response we get from the service call which we make via webclient??
@vedio1227
@vedio1227 4 жыл бұрын
Great Work, Crystal Clear. But i have a question regarding performance of webclient in synchronous calls comapred to that of rest template?
@TheRayapudisandeep
@TheRayapudisandeep 4 жыл бұрын
Koushik, thanks for the great videos. Your videos are just WONDERFUL resources. You mentioned about RxJava workshop in this video. Do you have any plans to do it?
@vickymsvikas
@vickymsvikas 2 жыл бұрын
Hello Kaushik, Great work explaining each and every minute detail, thank you !! Could you also please share the repository link of this code?
@lazarmarkovic8152
@lazarmarkovic8152 3 жыл бұрын
Hello, I have one question. In microservice design, and interservice communication. How to pass authorization header(JWT token) from microservice A to microservice B in WebClient call? But to avoid setting header every time in each web client request.
@mosup5007
@mosup5007 4 жыл бұрын
its a great series but i want to point to something. I think we shouldn't block at all as this kills the purpose of using reactive programing you can change the type of -ratings- to a flux and use ratings.flatmap(rating -> ... ) and then inside the flatMap() after .bodytoMono().map(movie -> new CatalogItem(...)); and return that.
@anarodriguezfernandez75
@anarodriguezfernandez75 4 жыл бұрын
He is not doing reactive programming
@mosup5007
@mosup5007 4 жыл бұрын
@@anarodriguezfernandez75 he pointed to that in the following videos
@jasonfang4879
@jasonfang4879 2 жыл бұрын
No
@infiniteviolins8971
@infiniteviolins8971 3 жыл бұрын
i like hearing the sound of the keyboard clicks in this video. it's peaceful. hahahahaa.
@The.Good.Gamer.Ps5
@The.Good.Gamer.Ps5 3 жыл бұрын
Netty is a server right? How Netty and Tomcat are running togethar?
@sariyaansari4096
@sariyaansari4096 3 жыл бұрын
After a long time I could see and learn something valuable... very great content and very good organization.... but I think if you add a separate level 4 and level 5 for webclient and api gateway it will be great This is really much needed for people who wanted to learn web client properly and api gateway I have started recommending this channel to others to learn something from here
@kam33p
@kam33p 5 жыл бұрын
I've a question, what if we've a kafka topic that we consume from and want to make a rest post, and the service that produces to this is faster than the rest post request. Will a webclient work faster than a regular resttemplate and will the service still have to wait for the response before committing offsets in the kafka topic?
@asmitasengar8008
@asmitasengar8008 4 жыл бұрын
Thanks it's very helpful
@mirac03
@mirac03 4 жыл бұрын
Wonderful job! Thank you!.
@nilendru
@nilendru 5 жыл бұрын
Learned as well as enjoyed all the videos in this series. In video 13 at 11.30, I think you can relate it with callable Future in java executer framework wherein we get the actual object returned by call after thread execution finishes by future.get () method in asynchronous way.
@amprabhleenkaur
@amprabhleenkaur 2 жыл бұрын
I am getting nullpointer exception. Any suggestions?
@ChandanKumar-lb4lb
@ChandanKumar-lb4lb 4 жыл бұрын
What is the springboot version here?
@stefanrusu2067
@stefanrusu2067 15 күн бұрын
almost 6 years later and RestTemplate is still here and not deprecated anymore in Spring 6 :)
@kuldeepmore7847
@kuldeepmore7847 4 жыл бұрын
How can we setup proxy? Need to access third party services
@PixelLoafLatte
@PixelLoafLatte 4 жыл бұрын
Is there a tutorial about spring webflux by java brain here?
@abdullahkhaled6162
@abdullahkhaled6162 3 жыл бұрын
I have a question when we write .block() at the end does this means that we are blocking the thread or it means we are writing in a synchronous fashion like async-await in javascript
@gudiya1491
@gudiya1491 Жыл бұрын
It's not working for me it's giving dns query timeout exception .. could you please tell why am I getting this error?
@rahuljoshi456
@rahuljoshi456 4 жыл бұрын
Can we use WebClient for APIs over HTTP2?
@Azyro777
@Azyro777 3 жыл бұрын
when I add dependency for spring-boot-starter-webflux, I couldn't resolve WebClient and got this error message : "Dependency 'org.springframework.boot:spring-boot-starter-webflux:2.5.0' not found". Is it because I'm using Java 16?
@Dongoske123
@Dongoske123 3 жыл бұрын
Did you ever find a solution to this?
@educatedraja4511
@educatedraja4511 2 жыл бұрын
@@Dongoske123 Hey I solved it by doing the following steps: IntelliJ->File->invalidate Caches... -> select the checkmark on 'Clear VCS Log caches and indexes' -> Invalidate and Restart
@shivanshbajpai588
@shivanshbajpai588 Жыл бұрын
So I guess in this scenario after using block() there is actually no difference in restTemplate and WebClient
@rubalprakash3103
@rubalprakash3103 5 жыл бұрын
can you make a video on WebSockets, sir!
@usmanjawaid5362
@usmanjawaid5362 4 жыл бұрын
how you're going to call WebClient from other technology such as React.js
@shibinthomas4461
@shibinthomas4461 3 жыл бұрын
How to add a body to webclient get method?
@bhuwantripathi2707
@bhuwantripathi2707 3 жыл бұрын
Facebook notification should be an example of asynchronous? Which comes regularly in backend
@ericzachman3615
@ericzachman3615 3 жыл бұрын
Thanks for your videos. C# dev here, trying to catch up on everything I’ve missed out on in Java since 1995. Does Java itself have a better word or moniker for the concept of a future or promise? Mono seems like a terrible word for that, or is it just me? What am I missing? Does Java have an async/await mechanism like c# or Js?
@shubhamdixit6097
@shubhamdixit6097 4 жыл бұрын
Well if you have a experinece with node js ,Mono is basically a promise in node js
@tudorpop3579
@tudorpop3579 5 жыл бұрын
consider using Retrofit instead of RestTemplate/webclient to get nice and clean code
@vivekpaliwal1876
@vivekpaliwal1876 8 ай бұрын
Use of mono is still not clear ..you are using block...how it is better then resttemplate? After get call api call thread is waiting or dead?
@idireney
@idireney 5 жыл бұрын
We can use Reactive Programming with SGBDR like Oracle don't think so cause it's compatible with cassandra mongoDB and other no sql sgbd is it true ?
@edukondalugumma3753
@edukondalugumma3753 5 жыл бұрын
You are ultimate sir, thank you...!
@rajendrasahu855
@rajendrasahu855 5 жыл бұрын
awesome tutorials sir..
@fathallahilyes529
@fathallahilyes529 3 жыл бұрын
HELLO, what it mean by class Path ??? always say that
@leemp337
@leemp337 2 жыл бұрын
thanks dude.
@alex1602
@alex1602 5 жыл бұрын
Nice episodes man, really nice how you explain those things.
@tomaszmachura1422
@tomaszmachura1422 4 жыл бұрын
Thanks for the great video. In my case, when I am trying to use block() to make the call synchronous, I get the following error: java.lang.IllegalStateException: block()/blockFirst()/blockLast() are blocking, which is not supported in thread reactor-http-nio-4 No idea on how to fix that :/
@swiss_ch
@swiss_ch 4 жыл бұрын
It is explained here: stackoverflow.com/questions/64838936/how-to-use-spring-webclient-to-make-synchronous-call/64845627#64845627
@narendra_ingle
@narendra_ingle 4 жыл бұрын
What happens when we have multiple class into service stub and we got request as string then how can we mapping class name ? bodyTomono(?)
@nehajain6751
@nehajain6751 4 жыл бұрын
Thanks a lot Koushik..!! could anybody please share the link to learn asynchronous reactive programming using webClient ; if Koushik has already posted? if not Koushik please try to make a series on Async programming in java springboot. Thanks in advance.
@trinhduyhung8211
@trinhduyhung8211 5 жыл бұрын
Great stuff
@daanishsarguru1170
@daanishsarguru1170 4 жыл бұрын
Thank you so much for this
@pereiradouglas
@pereiradouglas 4 жыл бұрын
great tutorial, help me so much! I looking for it but cant found in other places!
@akshaygupta9976
@akshaygupta9976 3 жыл бұрын
It was great explanation...but how we will remember all these stuff that you have explained in all the videos🙂😀
@SuperKako17
@SuperKako17 4 жыл бұрын
Great stuff. However, isn't calling `block()` blocking the execution after *every request*? Why not make them all and then block until they all resolve (eg, the JS `Promise.all()` way)? Or am I misunderstanding this? :D
@SuperKako17
@SuperKako17 4 жыл бұрын
OK, found the way to make the calls in parallel using `Mono.zip` method.
What is Spring Webflux and when to use it?
17:46
Defog Tech
Рет қаралды 247 М.
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
How To Call a REST API In Java - Simple Tutorial
29:14
Coding with John
Рет қаралды 288 М.
Top 25 Microservice Interview Questions Answered - Java Brains
39:54
Microservices using SpringBoot | Full Example
1:21:39
Daily Code Buffer
Рет қаралды 1 МЛН
Microservices using SpringBoot 3.0 | Full Example [NEW]
1:25:38
Daily Code Buffer
Рет қаралды 202 М.
@RestTemplate @WebClient RestTemplate and WebClient use with example
51:20
WriteCodeWith Prince
Рет қаралды 38 М.