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.
very nicely explained everything at such a granular level .Even a person with basic Java knowledge can understand his lecture of spring boot with microservice
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.
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!!!!!
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?
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?
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?
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.
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
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?
Very thanks for nice explain Please question, for call web service, as performance(fast, memory, CPU) which better, Client Jersey or WebClient Spring??
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.
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?
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.....
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?
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.
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
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?
Mono is like that one friend of mine who promises to give me my money back... but never does 😢... and why is it a mono? its one friend, and he is the only friend i got.
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 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
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?
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.
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.
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 :/
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
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.
Wonderful analogy. Thanks
man this is a gold mine even if is 5 years old, really good explanation
He is really good teacher. Very unique style of explaining.
very nicely explained everything at such a granular level .Even a person with basic Java knowledge can understand his lecture of spring boot with microservice
These days when workshops could be made with other people in the same room....So great...So good...
like all your videos, right to the point, super well explained. QUALITY!
Awesome tutorial....you're great as always! Txs :)
You are awsome, thanks for taking care of teaching us the new way of WebClient instead of using the deprecated RestPattern :)
You couldn't have explained it better.
Thanks!
Excellent work, you are a good man and I wish you the best.. Thank you very much.
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.
you can get a List as a Mono
Cant wait for the workshop with WebClient =D
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!!!!!
so tru😂
Your are great Sir ,the way of teaching is awesome
Brilliant explanation !!
Awesome content! It's perfect for who wants to learn a little bit about microservices
Wonderful job! Thanks a lot for such a clear explanation.
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?
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?
truely amazing tutorial!
His shirt changed instantly. Wow that's magic😁.... btw loving this series so far.
Thanks for this great tutorial!
Amazing explanation, thank you very much. This seems easier than Retrofit.
Awesome tutorial! Great teaching!
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?
i have the same doubt
Yep, there's nothing request-specific to the client instance being built.
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.
Hi Kaushik, You have AsyncRestTemplate already for async calls . Can you please explain us the difference between ASyncRestTemplate Vs WebClient ?
Awesome Kaushik, You are doing a great job.
Very easy and straightforward , i like the way
Thanks lot for this excellent video
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
Awesome explanation . Hope we have a Work Shop on the WebClient Async ....
Awesome very nice !!
AMAZING Workshop!!!!!!!!!!!! THANK YOU!!!!!!!!!!!
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?
Very good illustration..
Big thanks to this man!
i like hearing the sound of the keyboard clicks in this video. it's peaceful. hahahahaa.
Very thanks for nice explain
Please question, for call web service, as performance(fast, memory, CPU) which better, Client Jersey or WebClient Spring??
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.
@Kaushik, when to use .block() and not to?
Very understandable, thanks
Wonderful job! Thank you!.
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 ?
you are making singleton but what happen if a try to hit same end point at same point from different browsers?
Thanks it's very helpful
Is there any example of consuming https url using webclient ? Getting SSL erros.
what's the benefit of using WebClient with block mechanism vs traditional RestTemplate?
Can we make asynchronous call( using webclient) between two applications.
if i replace Movie.class in body to mono, to String.class, will it return me the string which i want ?
nicely explained
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?
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.....
How do I get back a collection of items? or a nested json object if the API collects that.
Give this men a bells🥃
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?
Great Work, Crystal Clear. But i have a question regarding performance of webclient in synchronous calls comapred to that of rest template?
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.
To me the question is how you mock this web clients? for example with Mockito....
Any playlist from Javabrain - on reactive programing
How to cache the response we get from the service call which we make via webclient??
Any example of Webclient with SSL (one way or two way SSL)?.
I am getting nullpointer exception. Any suggestions?
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
How can we put request params and request body or header in api request from spring boot
awesome tutorials sir..
I wanted to know how to store the data after consuming the api to database
You are ultimate sir, thank you...!
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?
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?
It's not working for me it's giving dns query timeout exception .. could you please tell why am I getting this error?
Mono is like that one friend of mine who promises to give me my money back... but never does 😢... and why is it a mono? its one friend, and he is the only friend i got.
Thank you so much for this
What is the springboot version here?
Hi Kaushik..Can you please make a video on asynchronous and reactive programming
Nice episodes man, really nice how you explain those things.
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?
Did you ever find a solution to this?
@@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
Great stuff
Can we use WebClient for APIs over HTTP2?
How can we setup proxy? Need to access third party services
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?
So I guess in this scenario after using block() there is actually no difference in restTemplate and WebClient
Hello Kaushik, Great work explaining each and every minute detail, thank you !! Could you also please share the repository link of this code?
Is there a tutorial about spring webflux by java brain here?
Please prepared a series on spring boot reactive programming
Super sir...... Thanks a lot:)
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 ?
how you're going to call WebClient from other technology such as React.js
thanks dude.
Kindly make playlist on reactive programming with web flux and mysql db
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.
great tutorial, help me so much!
I looking for it but cant found in other places!
How to add a body to webclient get method?
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.
He is not doing reactive programming
@@anarodriguezfernandez75 he pointed to that in the following videos
No
What happens when we have multiple class into service stub and we got request as string then how can we mapping class name ?
bodyTomono(?)
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 :/
It is explained here: stackoverflow.com/questions/64838936/how-to-use-spring-webclient-to-make-synchronous-call/64845627#64845627
HELLO, what it mean by class Path ??? always say that
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
OK, found the way to make the calls in parallel using `Mono.zip` method.
love it.
can you make a video on WebSockets, sir!
Thank you.
using block() will create an error, using webclient for synchronoues calls is messy
It was great explanation...but how we will remember all these stuff that you have explained in all the videos🙂😀