Dude, I just wanted to let you know that your explanation is so FREAKING awesome, I dont why you have such few views, just keep up the good work, you gonna make it. Hard luck P.S.: I would love to see some generic videos about concepts that every software engineer should know
Fantastic explanation! So many DI and IOC explanations, but none of them seemed to convince my logic. Your video made the concept so easy to understand. Thanks
After a few hours of watching videos and reading articles, this has finally made the bulb of my brain turn on and understand exactly what IOC and DI are. The fact that you uploaded this a little more than a month before I needed it makes it even more amazing to me. Thanks a lot, buddy!
Thanks for not spending 45 minutes on an introduction at the preschool level to what the concept of "depending" means in life in general. Much appreciated. You got right into the meat while still going at a level a beginner could understand. Much appreciated.
I watched tutorials, read books, followed documentation, but this fit me so well. Thank you very much! People could learn a lot from you in one day a lot.
I was very confused with this IoC concept and watched many videos on RUclips and nobody explained it better than you. I wish I could give thousands of likes to this video.
Oh man, I watched my instructor's video 3 times, didn't get the concept. But you made me understand everything within 8 minutes. I think the way you code and shows example is really helpful. Hats off!
Damn, I've been using Java for over 7 years now and I haven't fully grasped Dependency Injection/Inversion of Control until I found your video. I just discovered your channel and this video and it is very simple to understand. I think you are on par or might even be better than JavaBrains. Definitely, better than other RUclipsrs who teach Java technologies and tools.
you are an amazing teacher with great pace and tone of voice and you really know how to communicate important information in a simple easy to understand way. thank you!
I can't believe I watched a lot of videos about DI and IoC in Laravel and still couldn't understand the concept and now I find your video about the same concepts in Java and it's all crystal clear out of a sudden. Your explanations were so good. Thanks a thon!
Been watching videos about dependency injection for the last few days and I never quite understood it like you just explained. I'm really glad RUclips algorithm listens to my wants. You just earned a sub
The best tutorial on Dependency injection yet! Seems to tackle every "why" regarding the topic. A suggestion: You could have had a class that creates the object(initializes database) and return the object before going into the framework section. The most perfect explanation on the internet.
Thank you for this explanation. I did not understand this concept until you talked about the usage of unit testing and then the quarter fell. Thank you.
Im learning C# and Dependency Injection but was confused by some of the video on youtube specifically targeting c#. I stumbled on to your video and you made the concept so Clear! Thank you!
I'm no Java developer, but I found that most of the OO-related terminology used turn out to be things I'm already familiar and accustomed to but simply didn't know the official descriptions for. This is also by far the best description of either concept I've come across thus far. Wikipedia tends to be way too bloated for me to chew through.
This is the best and greatest explanation on all over the internet!! After spending hours trying to learn this s*it I've finally found you. Thanks a lot!!
Very nice! Keeping it simple. I've watched multiple videos on the subject, but your explanation condensed the answer to "why", which helped me a lot to start using the principle in practice, so thanks a ton!
holy shit. I have not found such a good explanation of this concept on youtube. I have given up on those 2 hour tutorials, i just needed a high level explanation. This should've have more views!
this is so good very clear explanation for IOC and DI, the example is pretty straight forward and simple to understand for beginners with no knowledge of spring, thank you!!
This is a great DI explanation with Realtime example ! Thanks Ryan for sharing a great content. 🤟❤ Automatic dependency part is really helpful since it reduces manual dependency injection
I'm currently learning Spring without much direction into why things are done the way they are in the framework, but your 10min video managed to explain a lot of that for me, Thanks !
@@TitaniumTronic At the time I commented I was just starting my new job, safe to say the best way to learn is by building projects, my learning capacity expanded drastically once I was thrown into building things with deadlines. What are you having issues with ?
After spending 1.5 hours on the web, this is by far the most useful explanation of DI and IOC. Thanks a lot! Can you also cover the Java EE vs Spring vs Springboot?
Straight to the point and very well done. You could also post the first 7 minutes (7:05) as a separate video and that will make an excellent introduction to the concepts of IoC and dependency injection, regardless of one's technology of choice. I'm definitely subscribing :)
Great content. Definitely subscribing. As a experienced dev I just need a quick example to follow to get the idea. A lot easier than trying to read the docs and get the point.
Think about mocks. You can instantiate objects or call methods by passing in mocks. Without DI, the real implementation would exist within the function (which you may not have in a testing environment!)
Great video, just what I needed in the state i'm in. But I think, watching this video only really helps when you already have an idea of the concepts. That's how it was to me. Before I watched the SOLID principle of Uncle Bob (a really good and entertaining video) but he has a very much more high level approach on it, looking at it from the business side (which we devs like to black out as often as possible :-))))) ), and your video directly afterwards , with this straight to the point and practical approach, was a perfect combination
Really good explanation! Base on the problems that we met in actually programming, and then show how IoC solve these problems. Very easy to understand ioc from your tutorial
This is gold!!. Thanks for explayning the whole idea behind it and not sticking to a concrete technology. Now is there a difference, in sprong boot, from using autormwired annotation instead of cusctruction injection?
I've been trying to understand DI/IoC process for weeks now, I understood its purpose at a high level, but it wasn't until now that I caught the missing element. Specifically, creating "public interface IDatabase" (instead of "public class IDatabase"), then creating different classes that inherit from IDatabase (ex: "MySql : IDatabase") and using IDatabase parameters when defining code. Then, if you decide to change from MySql to SQL, you create a class that inherits from IDatabase, and within your Main function, you replace the MySql variable with a SQL variable which will populate down into any functions taking it as a paramter. Thank you!
What do you guys want to learn next?
everything that is not language specific (Design patterns, SOLID, etc..)
@@stephane3115 Cool. I'll probably do a SOLID overview video and then separate deep dives like this one in a mini series! Thanks!
@@TheSimpleEngineer Sounds awesome! Looking forward to it!
Dude, I just wanted to let you know that your explanation is so FREAKING awesome, I dont why you have such few views, just keep up the good work, you gonna make it.
Hard luck
P.S.: I would love to see some generic videos about concepts that every software engineer should know
too fast, 40% not clear
Finally a dude that explains the basic concepts and then actually shows the practical use.. congrats my dude.
Fantastic explanation! So many DI and IOC explanations, but none of them seemed to convince my logic. Your video made the concept so easy to understand. Thanks
Glad to hear!
After a few hours of watching videos and reading articles, this has finally made the bulb of my brain turn on and understand exactly what IOC and DI are. The fact that you uploaded this a little more than a month before I needed it makes it even more amazing to me. Thanks a lot, buddy!
Dude, congrats... I've watched about 10 IoC or dependency injection videos, and this is the most comprehensive one yet... Cheers!
Thanks for not spending 45 minutes on an introduction at the preschool level to what the concept of "depending" means in life in general. Much appreciated. You got right into the meat while still going at a level a beginner could understand. Much appreciated.
The year is 2024 and this is the best explanation for IoC... appreciate man
I watched tutorials, read books, followed documentation, but this fit me so well. Thank you very much! People could learn a lot from you in one day a lot.
I was very confused with this IoC concept and watched many videos on RUclips and nobody explained it better than you.
I wish I could give thousands of likes to this video.
Oh man, I watched my instructor's video 3 times, didn't get the concept. But you made me understand everything within 8 minutes. I think the way you code and shows example is really helpful. Hats off!
I've listened to other people explaining this topic. You've had the best, easiest to listen to explanation. Thanks
Easily the best explanation I have seen, simple, succint and thorough - well done
After hours of wasting my time on different articles and videos, I finally understood from this video. Thanks a lot.
Finally someone explained DI in a very practical and simple way. Thankss!
Damn, I've been using Java for over 7 years now and I haven't fully grasped Dependency Injection/Inversion of Control until I found your video. I just discovered your channel and this video and it is very simple to understand. I think you are on par or might even be better than JavaBrains. Definitely, better than other RUclipsrs who teach Java technologies and tools.
Thanks for the kind words.
I don't know Java much, I just wanted to understand the principles of DI. And you nailed it. Crisp, fast, to the point. Kudos
you are an amazing teacher with great pace and tone of voice and you really know how to communicate important information in a simple easy to understand way. thank you!
I can't believe I watched a lot of videos about DI and IoC in Laravel and still couldn't understand the concept and now I find your video about the same concepts in Java and it's all crystal clear out of a sudden. Your explanations were so good. Thanks a thon!
I have spent literally years trying to find a decent video or article to understand DI. This is it right here, the explanation just makes sense
I've been searching & watching videos about DI. This is the best so far!!!? You've got a gift of teaching!!! Thank you very much!!!
Been watching videos about dependency injection for the last few days and I never quite understood it like you just explained. I'm really glad RUclips algorithm listens to my wants. You just earned a sub
This is gold. Thank you for showing your teaching skills and makings a concise no nonsense video. This is the way to learn a concept.
thanks for showing the problem with constructor injection. 😊
Still after 3 years its most relevant video on this topic. Kudos from India.
The best tutorial on Dependency injection yet! Seems to tackle every "why" regarding the topic. A suggestion: You could have had a class that creates the object(initializes database) and return the object before going into the framework section. The most perfect explanation on the internet.
Dude. You blew my mind with how simple you made this.
Thank you for this explanation. I did not understand this concept until you talked about the usage of unit testing and then the quarter fell. Thank you.
Men your voice is very clear, to be honest everything was just clear! very good understanding
This is the best video on IOC I've seen on RUclips.
Im learning C# and Dependency Injection but was confused by some of the video on youtube specifically targeting c#. I stumbled on to your video and you made the concept so Clear! Thank you!
This is the best video explanation for IoC, dependency Inversion principle and dependency injection. 👏👏👏✌️
Best video in yt on Dependency Injection & Inversion of Control.
Perfect explanation for DI!
Love from South Korea
It was extremely easy to understand. It's an excellent lecture!
Thank you!!
Watching this 5 years later, still a fantastic video
Excellent. In 10 minutes I went from being almost clueless about dependency injection to having a basic understanding.
Very helpful vid. Thnx.
@8:50, the issue you introduced - of having 2 databases - can easily be resolved by employing a façade instead of DI.
I'm no Java developer, but I found that most of the OO-related terminology used turn out to be things I'm already familiar and accustomed to but simply didn't know the official descriptions for. This is also by far the best description of either concept I've come across thus far. Wikipedia tends to be way too bloated for me to chew through.
The BEST explanation of DI on RUclips
This really is the best explanation of DI and IOC I have seen yet! Your explanation was very easy to understand!
I watched quite a few videos before I found this gem. Thanks for keeping it simple
Finally, today i have understood IoC explicitly!!! yes you are a gooood lecturer!
Lucky to find this video, whenever I need to revise DI, IoC I prefer this one, it's simple, crisp, and clear. Thanks a lot :)
What an amazing and clarifying explanation. Thanks you all so much!
This is the best and greatest explanation on all over the internet!! After spending hours trying to learn this s*it I've finally found you. Thanks a lot!!
Very nice! Keeping it simple.
I've watched multiple videos on the subject, but your explanation condensed the answer to "why", which helped me a lot to start using the principle in practice, so thanks a ton!
This was fantastic, the easiest explanation for DI ever!
Thank you! I’m a complete beginner and I was having really hard time understanding what ioc is about. Your explained it so clearly.
I still don't understand i think i am dumb
holy shit. I have not found such a good explanation of this concept on youtube. I have given up on those 2 hour tutorials, i just needed a high level explanation. This should've have more views!
this is so good very clear explanation for IOC and DI, the example is pretty straight forward and simple to understand for beginners with no knowledge of spring, thank you!!
Thanks! Glad you enjoyed it
By far the best explanation for IOC and Dependency Injection. All other channels complicate that stuff. Much appreciated. Subbed your channel as well.
This is a great DI explanation with Realtime example !
Thanks Ryan for sharing a great content.
🤟❤
Automatic dependency part is really helpful since it reduces manual dependency injection
Best lecture I seen about this topic.
Good illustration. I liked how the debases are initialized in some global space outside the hand coded application.
This was amazing. It just explained everything I had my doubts about.
I love the lamp analogy. I am stealing it.
I'm currently learning Spring without much direction into why things are done the way they are in the framework, but your 10min video managed to explain a lot of that for me, Thanks !
Hows it going? I'm trying to learn too but havin issues 😭
@@TitaniumTronic At the time I commented I was just starting my new job, safe to say the best way to learn is by building projects, my learning capacity expanded drastically once I was thrown into building things with deadlines. What are you having issues with ?
this explanation couldn't be better!! thank you
The best explanation of these two very important concepts. Thank you Ryan
By far the best use of code to explain this concept! Thank you !
Nothing can be better than this. As a crash course I used to see this video :D
After spending 1.5 hours on the web, this is by far the most useful explanation of DI and IOC. Thanks a lot! Can you also cover the Java EE vs Spring vs Springboot?
Second time I search for something that leads me to this Channel. Subscribed
ive been looking everywhere to understand this concept. this was so well explained.
Sweet
Straight to the point and very well done. You could also post the first 7 minutes (7:05) as a separate video and that will make an excellent introduction to the concepts of IoC and dependency injection, regardless of one's technology of choice. I'm definitely subscribing :)
Wow what a wrap-up! Explaining beautifully from the beginning and connecting it to Spring seamlessly! Amazing Stuff:D
Thanks to you and your simplest examples to understand this concept.
Thank you for this! I had to look into these for a job interview and this video is way more comprehensible than my college notes! haha
Great content. Definitely subscribing. As a experienced dev I just need a quick example to follow to get the idea. A lot easier than trying to read the docs and get the point.
Awesome. Finally a tutorial that makes sense. Thank you!
Awesome, thanks! Something went click, finally!!! Been struggling to understand dependency injection and IoC up until now
Straight to the point and no nonsense :P
Good explanation, I did not understand IoC and DI before watching your video!
Beautiful explanation and comfortable demonstration! Thanks!
short ,fast and useful . thanks
perfectly explained, even for non-english speakers.
thanks a lot
Yes. I still don't understand how inversion of control makes it easy to unit test the code?
Think about mocks. You can instantiate objects or call methods by passing in mocks. Without DI, the real implementation would exist within the function (which you may not have in a testing environment!)
Great video, just what I needed in the state i'm in. But I think, watching this video only really helps when you already have an idea of the concepts. That's how it was to me. Before I watched the SOLID principle of Uncle Bob (a really good and entertaining video) but he has a very much more high level approach on it, looking at it from the business side (which we devs like to black out as often as possible :-))))) ), and your video directly afterwards , with this straight to the point and practical approach, was a perfect combination
Awesome! Great explanation in a super short video !!
You are a fantastic teacher! Hope you return to making videos...wish you all the best!
best example and explanation I've heard so far. a great vid or series would be to set up a basic program using IoC and Java Spring
Outstanding explanation!
good explanation again!
Next time it would be great if you can make the font of the code bigger. On a phone it is pretty difficult to read.
Good feedback , thanks!
@@TheSimpleEngineer Font size was fine for me. I'm not going to watch this on my phone, I need to have VS next to me to practice.
Really good explanation! Base on the problems that we met in actually programming, and then show how IoC solve these problems. Very easy to understand ioc from your tutorial
AMAZING! You just turn my brain to another level. Thanks! and keep doing your videos
Short and to the point. 😎 Thanks !
Perfect explanation! Thank you very much for this!
Awesome video. Finally, it makes sense
Great video man! These are confusing concepts, which you were able to put in a simple way! Thanks for sharing!
Discovered you on 15th Jan 2021. this year will be good, unlike 2020. thanks for the best explanation of DI and IOC
Fantastic! Now I really got a clear picture of why this principal/design is needed!
This explanation is amazing!
I have to agree with most up top, really well explained, thanks and well done!
Best and concise information 🔥
This is gold!!. Thanks for explayning the whole idea behind it and not sticking to a concrete technology.
Now is there a difference, in sprong boot, from using autormwired annotation instead of cusctruction injection?
this decreased the confusion in my head, thank you!
Glad to hear!
Awesomely Explained, Thank you!
Fantastic video, very well done
Mind blowing explanation! Thank you so much :)
I've been trying to understand DI/IoC process for weeks now, I understood its purpose at a high level, but it wasn't until now that I caught the missing element.
Specifically, creating "public interface IDatabase" (instead of "public class IDatabase"), then creating different classes that inherit from IDatabase (ex: "MySql : IDatabase") and using IDatabase parameters when defining code.
Then, if you decide to change from MySql to SQL, you create a class that inherits from IDatabase, and within your Main function, you replace the MySql variable with a SQL variable which will populate down into any functions taking it as a paramter.
Thank you!
This was really well done and helpful. Thank you.