It was excellent explanation, and was very helpful video . Please continue the fantastic work that you are doing.
@Javatechie2 жыл бұрын
Thanks Amit 😊
@srinivastadimalla1232 Жыл бұрын
Brother .. .Thank you very much for your wonderful Video. Awesome Explanation. Keep going.. Great Job
@Javatechie Жыл бұрын
Thanks buddy 🤛
@josephmbimbi3 жыл бұрын
this step by step, from scratch, approach, is excellent
@TheMakeupmonika Жыл бұрын
wonderful , than you so much Sir !!!!
@pavanianilkumar93603 жыл бұрын
Nice Explanation, Thanks bro
@hareeshjp2 жыл бұрын
Thank-you for very nice explanation...
@larsanderson60012 жыл бұрын
Hey, the intro music volume is bit too high. Just a tiny comment for improvement. Great content, thanks!
@obioraokwubanego47899 ай бұрын
you are the best!
@farhaankazi7134 Жыл бұрын
Excellent
@Justadudeyes2 жыл бұрын
Wonderful video!!!!
@samirmujawar97033 жыл бұрын
good work bro. awesome !!!
@林可可-l9w10 ай бұрын
for the Mono scenairo, even you omit an exception, according to the diagram, onNext() still should be invoked, why no statement printed?
@andreicapi35353 жыл бұрын
Thank you this cleared up alot
@jiangfengji79312 жыл бұрын
看了一下午的国内视频晕晕的,直接这样来个demo多好
@李卓轩李3 жыл бұрын
it's nice , thank you
@deepakmishra1693 жыл бұрын
Very nice 👍👏👏👏
@saymumsany2 жыл бұрын
Please provide a practical demo like how this web flux will use in web application or API service.
@surajJr242 жыл бұрын
It is good to convert the mono to string using block?
@Javatechie2 жыл бұрын
If you will use a block then it will not be considered async right?
@TheGodfather101 Жыл бұрын
block() is like when you call get() or join() on an async/await in js. only when you dont have any preceeding tasks to do and can afford doing blocked retrieval.
@yogeshjangra36032 жыл бұрын
Nice Explanation, Suggestion : Intro music is too irritating due to high volume..
@Javatechie2 жыл бұрын
Not sure it might be an editing mistake
@samuelsodagudi3 жыл бұрын
Thank you. 👌👌👌👌👌
@kavikavitha21588 ай бұрын
Thank you so much nicely explained. But Publisher in this flux or mono but where is Subscbier in this program
@pavanganeshbhagathi11523 жыл бұрын
excellent content ❤️ , Please upload error handling video
@abhijitprusty3 жыл бұрын
best playlist
@pratishrutipanda64613 жыл бұрын
Nice video
@kumarsharwanofficial5 ай бұрын
1. How can i implement my video file is on the FTP server. ? 2. If i have already added the spring-web maven dependency in my spring boot application then can i also add the spring reactive web dependency. is it possible ? 3. is Spring reactive web does all work like spring web with extended feature.?
@HelloWorld-id5ho Жыл бұрын
which springboot assistant plugin u r using?
@nareshkumar-fm1wf2 жыл бұрын
Hi which intellij idea u r using
@Javatechie2 жыл бұрын
Community edition
@nareshkumar-fm1wf2 жыл бұрын
How will add spring assistant
@Javatechie2 жыл бұрын
Now search plugin for spring initializer
@mntube89 ай бұрын
Difference here is that in case of Mono.error there is no onNext call while in the case of Flux.error, the onNext call is happening before the onError call.
@chandrasahoo86232 жыл бұрын
Why There is no onnext method call in case of exception in mono but we had onnext method call in case of exception in flux
@dineshreddyambu Жыл бұрын
is it possible to convert Mono object to java object without blocking ?
@Javatechie Жыл бұрын
No not possible
@dineshreddyambu Жыл бұрын
I have one uses case . I am calling multiple webclient call synchronous and return to graphql response . While return to graphql I am converting to mono object to Java object through completable future but we are getting time outs . I don’t want design change here . Could you please suggest for the next step
@Javatechie Жыл бұрын
Can you try one solution from the mono object call toFuture().get()
@dineshreddyambu Жыл бұрын
@@Javatechie I have tried that also but without future is any another way?
@siddhilalabobo35973 жыл бұрын
Hi Java Techie, great video, one question, can we return .json file with Springboot, suppose user input to API and API will return .json or .text file .Thanks in advance
@Javatechie3 жыл бұрын
Yes we can do but you need to return byte[]
@siddhilalabobo35973 жыл бұрын
@@Javatechie Thanks a lot
@coolfreaks683 жыл бұрын
Yes Madam. You have to covert your file content into a Byte array, and write that to the HTTP response output stream. Also you have to mention the response content type and the filename. You may write you code in the following way : @RequestMapping(value = "/download", method = RequestMethod.GET) public void downloadPDFResource(HttpServletRequest request, HttpServletResponse response) { //Setting response content type response.setContentType("application/vnd.ms-excel"); //Setting Filename - the filename may also be derived dynamically response.setHeader("Content-Disposition", "attachment; filename=\"Sales_Group_Inbound_Data.xls\""); .HSSFWorkbook wb = new HSSFWorkbook(); /* Here you may initialize your work book object using hssf library*/ ByteArrayOutputStream outByteStream = new ByteArrayOutputStream(); // At this line the excel file gets written to ByteArrayOutputStream wb.write(outByteStream); byte[] outArray = outByteStream.toByteArray(); OutputStream outStream = response.getOutputStream(); // At this line the Byte Array gets written to HttpServletResponse output stream outStream.write(outArray); outStream.flush(); }
@coolfreaks683 жыл бұрын
Response content type of an endpoint will have nothing to do with Spring Boot. Spring boot is about the initializing and running the application.
@ModifiedGaddiyan2 жыл бұрын
Test is not working on my machine what to do to run Monoflux
@Javatechie2 жыл бұрын
What is the error
@jagadeeshbelagallu52433 жыл бұрын
How to contact Java Techie trainer i have some realtime doughts is there and i am facing difficult in implimeting code in office
@Srini81743 жыл бұрын
Thank you
@raghuvardhansaripalli96363 жыл бұрын
Hi , can you pls create a video on Exception handling with spring weblux. i am searching in youtube, i am not getting any good videos. PLEASE PLEASE do this whenever you have time.. In netty server, 5XXError has been removed and its not working. thank you , God bless you and Stay Safe..
@Javatechie3 жыл бұрын
Okay I will do that
@raghuvardhansaripalli96363 жыл бұрын
@@Javatechie Thank you Basant for your quick reply. your fans including me will be thankful if you can create video something like this whenever you have time: 1. creating a repository, service, controller classes with Mono & Flux class using mongoDbreactive DB. 2. then handle different types of expections like 404, 500 Exceptions, NOT_FOUND etc. from controller class by using @AdviceController or any other approach. 3. you are the best person to take a call to handle global exceptions FOR WEBFLUX. thank you in advance, GOD BLESS YOU...
@raj0062 ай бұрын
In real applications subscribe() method is prohibited from using as it blocks the flow which is again asynchronous execution
@rameshbabuarigela9902 Жыл бұрын
What is the difference between spring boot and spring webflux ? Can anyone please explain?
@elonmusk46873 жыл бұрын
What is the name of this ide?
@johnnesjeandesouzasilva38453 жыл бұрын
IntelliJ
@valeenoi22842 жыл бұрын
Who is the subscriber here, the current running thread?