Тёмный

Introducing Load Balancer in Microservices architecture | OpenFeign | Spring Boot | Spring Cloud #4 

Selenium Express
Подписаться 107 тыс.
Просмотров 37 тыс.
50% 1

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 113   
@aruha2847
@aruha2847 Год назад
Abhilash, your effort in explaining this is unmatched. Engaging and easy to understand. The Best Spring Course out there!
@abhirooptayal7203
@abhirooptayal7203 3 месяца назад
Thank you for this wonderful course. I wonder how you would justified your paid students(incase they have queried you) of this batch that within a month or two you have uploaded this course for FREE for all of us :D .
@ayushjain7555
@ayushjain7555 8 месяцев назад
One question that if Feign client also non blocking then why spring is just deprecating the rest template, it should also deprecate the feign client?
@debendradey8797
@debendradey8797 3 месяца назад
It is like Modi ji's "Man ki Baat" rather than a good tutorial . He did not look forward even once during the entire period.
@muralikrishna6044
@muralikrishna6044 Год назад
How to feignClient fetch the url from application. Properties file..?
@aibardulatov
@aibardulatov 8 месяцев назад
Hi Abhilash. can you help me. I have error. It says : Consider defining a bean of type 'com.employee.employeeservice.service.AddressClient' in your configuration. It means even I make AddressClient a bean, using by @FeignClient annotation, but Spring can't find bean in IoC container. What to do?
@aibardulatov
@aibardulatov 8 месяцев назад
O my God. Thanks> I resolved. Just I had to annotate main class with annotation @EnableFeignClients
@amoljadhav3681
@amoljadhav3681 Год назад
Hello Sir can u please start the Kafka and Apache camel series i really want to buy this series at any cost
@ginjupallinarmada
@ginjupallinarmada 2 месяца назад
Do we have any configuration for feign client in config class
@CodingVibe-l7c
@CodingVibe-l7c Год назад
Thank you abilash, your videos are verry easy to understand, also this MS serious goint to be verry helpfull for me. I am waiting next videos as well. Keep it up. Your ammazing teacher.❤️❤️
@SeleniumExpress
@SeleniumExpress Год назад
Thanks for the kind words, Nuwan. Glad that my contents are helping.
@aayush481
@aayush481 Год назад
thanks a lot for great explanation, your way of adding clarifications in video makes it crystal clear, appreciate your effort !
@premreddy5020
@premreddy5020 Год назад
hi bro please upload microservices coding part in github and tell us about github account of yours.
@kamalmohansinghrana1381
@kamalmohansinghrana1381 Год назад
Does entity framework return the same object reference if I query the "logically" (in database) same object from different places. For example, I queried customer with name Joe Black, (and assume for now I know that there's only one Joe Black in the database.) Customer c = select ... blabla where ... Name == Joe Black...; and in somewhere else in the code, I queried Customer c2 = select... where.. ID==5 where 5 is the ID of Joe Black. I know that in the database they map to the same object, but DO they also map to the same object in code level? So does c1 equal to c2? I have lists to merge and check for logical equality of the objects (I cannot access the database for now) and I was wondering whether Entity Framework objects will play nicely with it or should I write my custom comparer classes.
@manamohansamal1040
@manamohansamal1040 Год назад
Hi Abhilash, a well explained video about load balancing.❤️❤️ I have one doubt so far , the feign client is great removing lots of boilerplate code but what about the exception handling or error handling in case of a 4xx or 5xx , do we need to handle all those in the service class from where we are calling the proxy or is there any way to define the exception handlings as well ??
@SeleniumExpress
@SeleniumExpress Год назад
Hi Manamohan ! Glad that it helped ! There are different ways to handle feign exception which will be covered in the follow up lessons. For now you can find an attribute called fallBackFactory inside @FeignClient. Do a little research about that, it help you to override your feign client abstract methods and you can give a default fallback response / handle exception as per your need. Alternatively you can use a global exception handler of spring and create an exception handler to handle feign client exceptions. @ExceptionHandler(FeignException.class) public String handleFeignException(FeignException e, HttpServletResponse response) { //grab needed stuffs from the response } You can also learn about ErrorDecoder from feign. It will help you to decode the error response and handle exception as per your need.It's something like RestTemplate's ResponseErrorHandler if you are aware about .
@manamohansamal1040
@manamohansamal1040 Год назад
Yes it makes sense now I was looking for something to replace the ResponseErrorHandler of rest template or to add fall back strategy with circuit breaker is in place . Thank you for the explanation ❤️❤️
@soumodipsengupta9902
@soumodipsengupta9902 Год назад
The way you are teaching is fun , informative and a lot inspiring!
@memsofgamers9479
@memsofgamers9479 Год назад
according to Browser security policy -> browser follows SOP(Same organ policy) if you want to access data from another ports/host browser doesn't allow us to do that, that's why we use crossOrigin but here in this video how it is happening. sir can you please explain this.
@JohnDoe-ej6vm
@JohnDoe-ej6vm Год назад
I will definitely buy this course if available on udemy because i cant wait 1 more week for next part.
@SeleniumExpress
@SeleniumExpress Год назад
I am not Udemy, you can checkout the full version of this course on seleniumexpress.com
@JohnDoe-ej6vm
@JohnDoe-ej6vm Год назад
@@SeleniumExpress yes sir i already checked. inr to pkr conversation for me course will be 26k pkr and I can't afford as i am a student.
@SeleniumExpress
@SeleniumExpress Год назад
@@JohnDoe-ej6vm do you have a university ICard? Give it to them, they will give you a student coupon if available. Happy Learning ❤️
@Barunkumar-pm8qi
@Barunkumar-pm8qi 9 месяцев назад
bgm superrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
@Kashiskthakur
@Kashiskthakur Год назад
if we are using REST protocols to communicate with other services that means this is just a distributed monoliths isn't it? please do a video on messaging queue based service communication.
@SonalGupta25
@SonalGupta25 Год назад
Hi Avilashi, where to take the paid course for microservices @selenium express ? please lemme know..
@R.fit_b
@R.fit_b Год назад
feign client is not working for me
@santhoshchandran6952
@santhoshchandran6952 Год назад
In rest template - u told like it takes 10 sec to response back approximately Is that won't happen in feign client?
@arnabchatterjee5121
@arnabchatterjee5121 Год назад
Hi sir, i want to buy the full course but i didn't receive the confirmation mail in my mail id.can you please help me in this login process.
@damilola_adegunwa
@damilola_adegunwa 9 месяцев назад
thank you so much! I learnt about Feign Client and Ribbon, (load balancing)
@damilola_adegunwa
@damilola_adegunwa 9 месяцев назад
thank you so much! I learnt about Feign Client and Ribbon, (load balancing)
@AK-fh8tg
@AK-fh8tg Год назад
please use diffrent database
@senya-man9710
@senya-man9710 Год назад
Best explanation on youtube regarding the use of feign clients👏👏👏👌👌👌
@sharathkumar726
@sharathkumar726 4 месяца назад
Your are teaching with good attitude, Inspiring..♥
@rajneeshraikwar8352
@rajneeshraikwar8352 Год назад
Hi Abhilash, Thank you for Great explanation in easy way
@kalaliajay2273
@kalaliajay2273 Месяц назад
feeling great
@shanmugam4844
@shanmugam4844 2 месяца назад
Feeling Great
@yaz9552
@yaz9552 25 дней назад
understood
@bharathbhonsle8051
@bharathbhonsle8051 Год назад
Hi Abhilash,This was a great explanation and i have a doubt what if the restService is Protected with BasicAuth ??
@shahidavalisyed487
@shahidavalisyed487 7 месяцев назад
feeling grate
@chaitucherry879
@chaitucherry879 Год назад
If anyone can teach like you, that is only you, Lots of informative, very deep explanation👏
@harikrishnan-fi4yw
@harikrishnan-fi4yw 10 месяцев назад
Feeling great
@arjunvetal2274
@arjunvetal2274 Год назад
feeling great
@kranthikumar4497
@kranthikumar4497 7 месяцев назад
Feeling good
@amiyarout217
@amiyarout217 Год назад
feeling great
@koripellyindukumarreddy8336
feeling great
@santhoshchandran6952
@santhoshchandran6952 Год назад
Feeling great
@chaituy2672
@chaituy2672 Год назад
Bro. Your presentation is top notch.
@SeleniumExpress
@SeleniumExpress Год назад
Thank you!
@benaliali2046
@benaliali2046 Год назад
understood
@ivanetinajero
@ivanetinajero Год назад
Excellent course. Congratulations!
@kamalmohansinghrana1381
@kamalmohansinghrana1381 Год назад
Does feign client supports spring oauth2 security features just like web client?
@SeleniumExpress
@SeleniumExpress Год назад
Yes, Kamal ! It's just a rest client.
@saifulhaq4408
@saifulhaq4408 Год назад
Reminds me Retrofit in android development..
@ajaydhiman2368
@ajaydhiman2368 Год назад
What is the benefit of using client side load balancing over server side load balancing ? (I know its too early to ask) and why we are calling it client side although everything is on server ?
@ravurisandeep8377
@ravurisandeep8377 9 месяцев назад
I have been looking into these topics from 10 days . I also have the same question . If anyone clear about this please answer
@JohnDoe-ej6vm
@JohnDoe-ej6vm Год назад
38:05 example 43:14 . Run Multiple instance in sts
@sazimtandabuzo3199
@sazimtandabuzo3199 9 месяцев назад
understood - thank you very much 🙏
@emersontavera9362
@emersontavera9362 11 месяцев назад
you are such a great teacher man, keep it up pls
@mayankrungta8002
@mayankrungta8002 3 месяца назад
your all videos are very very helpful
@beryalex1798
@beryalex1798 Год назад
Can any buddy tell me which IDE is the teacher using?
@SeleniumExpress
@SeleniumExpress Год назад
STS
@kiranpatil0804
@kiranpatil0804 Год назад
Feeling great, such wonderful explained
@prashantkumar-ko6yd
@prashantkumar-ko6yd Год назад
waiting next video in the video series
@fazalharoon9354
@fazalharoon9354 Год назад
very informative Thanks sir
@aw703
@aw703 Год назад
Thanks sir for the video. Will be waiting for the next video
@SeleniumExpress
@SeleniumExpress Год назад
You are welcome! Sure, see you next Saturday 😊
@lunatichigh2896
@lunatichigh2896 Год назад
UNDERSTOOD Thank you
@francksgenlecroyant
@francksgenlecroyant Год назад
Feeling great bro 👊👊👊
@sharathkumar726
@sharathkumar726 4 месяца назад
Feeling Great!!🙇‍♂
@mcq2427
@mcq2427 Год назад
feeling great
@SeleniumExpress
@SeleniumExpress Год назад
I too. Glad to know that you have reached halfway
@vakkalahari5449
@vakkalahari5449 Год назад
Could you please upload microservices paly list Abhilash
@SeleniumExpress
@SeleniumExpress Год назад
Hi Hari, please follow this playlist.
@vakkalahari5449
@vakkalahari5449 Год назад
@@SeleniumExpress Thanks Abhilash i found play list.
@neelkanthsarkar4416
@neelkanthsarkar4416 Год назад
feeling great sir
@steveken6279
@steveken6279 5 месяцев назад
Feeling great
@someshwarreddydasari6745
@someshwarreddydasari6745 Год назад
feeling great
@nguyenquan4836
@nguyenquan4836 Год назад
Enjoy learning, happy to wait for next week lesson.
@SeleniumExpress
@SeleniumExpress Год назад
Thank you! See you next week.
@harshalprakashgiri6543
@harshalprakashgiri6543 Год назад
Feeling great Thanks for such a great explanation
@SeleniumExpress
@SeleniumExpress Год назад
So nice of you !
@srigakolapuatchuthasai5929
@srigakolapuatchuthasai5929 Год назад
Thanks abhi ❤️
@SeleniumExpress
@SeleniumExpress Год назад
most welcome !
@PothinaNarendra
@PothinaNarendra Год назад
Great Man😍
@start1learn-n171
@start1learn-n171 Год назад
TQ
@DeepakGupta-pz4fx
@DeepakGupta-pz4fx Год назад
Can you cover unit testing cases???
@SeleniumExpress
@SeleniumExpress Год назад
Hi Deepak. I try to cover it in my 2nd batch of recordings. thank you for the suggestion.
@amiyarout217
@amiyarout217 Год назад
amazing learning
@himanshupujari5558
@himanshupujari5558 Год назад
Waited whole day as you told Saturday you will be posting ❤️
@SeleniumExpress
@SeleniumExpress Год назад
Happy Learning, Himanshu ! ❤️
@himanshupujari5558
@himanshupujari5558 Год назад
Thanks Abhilash sir ❤️
@mansinghyadav548
@mansinghyadav548 Год назад
Love you sir it is from my heart
@SeleniumExpress
@SeleniumExpress Год назад
Thank you Manis ! It means a lot ❤️
@RAVIKUMAR-rs9fd
@RAVIKUMAR-rs9fd Год назад
Thanks for the video
@SeleniumExpress
@SeleniumExpress Год назад
Welcome, Ravi!
@ashokpanda8873
@ashokpanda8873 Год назад
Lots of love bro God bless you
@SeleniumExpress
@SeleniumExpress Год назад
❤️
@santhoshchandran6952
@santhoshchandran6952 Год назад
Thanks for the video
@SeleniumExpress
@SeleniumExpress Год назад
You are welcome, Santosh!
@Yogesh_C.K
@Yogesh_C.K 5 месяцев назад
Feeling great 👍
@SeleniumExpress
@SeleniumExpress 5 месяцев назад
❤️
@sarthaksrivastav7239
@sarthaksrivastav7239 Год назад
love you brother ❤️🙏🏻
@SeleniumExpress
@SeleniumExpress Год назад
❤️❤️😊
@alokraj4040
@alokraj4040 Год назад
feeling great
@SeleniumExpress
@SeleniumExpress Год назад
😊
@paridhisingh3283
@paridhisingh3283 Год назад
Great video 👏🏽👏🏽
@SeleniumExpress
@SeleniumExpress Год назад
Thanks, Paridhi !
@JohnDoe-ej6vm
@JohnDoe-ej6vm Год назад
Thanks sir :) you are really great person
@SeleniumExpress
@SeleniumExpress Год назад
Thanks for the kind words ❤️
@nullpointer500
@nullpointer500 Год назад
Hi Abhilash is this course available in Udemy???
@SeleniumExpress
@SeleniumExpress Год назад
Hi Rahul. No, I am not on Udemy !
Далее
Вопрос Ребром - Серго
43:16
Просмотров 1,4 млн
Spring Boot APIs Gateway in 20 Minutes
22:50
Просмотров 11 тыс.
Load Balancer Tutorial - What is a Load Balancer
17:50
Microservices using SpringBoot 3.0 | Full Example [NEW]
1:25:38
Spring Cloud goes Cloud
2:10:21
Просмотров 35 тыс.
TWORZENIE MIKROUSŁUG ZE SPRING CLOUD
2:49:26
Просмотров 12 тыс.