vastly impacting my knowledge to be an efficient programmer by watching your videos navin sir. Though I have not yet started my college course but the foundation I have is firmly intact and organized. This yt channel is not only teaching but they also help us to acquire the lesson that we must "Educate"... Once again thanks a lot sir✨👌
Thanks for these Beautiful tutorials anna and the best part is you are making the complex topics easy for us to understand!! Could you also please make some videos on how to write the unit and API tests for the production code!!?
Hello Navin first of a big thanks that your doing a greate job by creating so detailed and covering each and every topic so crystal clear. I need a suggestion i have 5 + years of experience in software testing and i am a BCA graduate, Can i switch my domain as backend developer ??
39:03 Hi Naveen, instead of creating local variables to convert the string to lower case from get methods, can we use p.getName().toLowerCase().contains(str).
Good Morning Naveen Sir, I'm a dotNet developer with 2yrs exp total (1.5yrs in dotnet) and i wanted to switch for java developer. Can I go ? And I'm also learning Java beginner course videos from you sir.
Hey Siri ! want to gain knowledge in java and spring boot siri be like: redirecting to Telusko channel by ur fav Navin Reddy haha :) jokes apart but probably no one can match you in teaching a concept to anyone efficiently because of u lot of them became java developers here and it's not specifically bounded to java only Thanks a lot 😇
First two Assignment service class methods: public List searchByPlace(String string) { return list.stream().filter(n -> n.getPlace().equalsIgnoreCase(string)).collect(Collectors.toList());
No words about the way you explained code with examples... It's like almost spoon-feeding.. Thanks a lot brother
The best thing about this training is coding and explaining on the fly.. it is really beneficial , please continue Navin Sir..
Excellent video - I am a junior Java/Spring developer and this is basically the first 6 months of learning. Thank you!
Very great work, you are creating revolution in study
Yes we need people like him
TH-cam is great for creating such good content
Now secod day am finishing this session. its 1 O clock mid night. But never feeling bore. Your a good teacher and brother. Really Thank You.
Best course for beginners because it let you know what are the differences between normal java project and the same project with spring boot.
vastly impacting my knowledge to be an efficient programmer by watching your videos navin sir. Though I have not yet started my college course but the foundation I have is firmly intact and organized. This yt channel is not only teaching but they also help us to acquire the lesson that we must "Educate"... Once again thanks a lot sir✨👌
The best part of Navin Sir is that he make complex things very easy. Thanks a LOT.
Thanks for these Beautiful tutorials anna and the best part is you are making the complex topics easy for us to understand!! Could you also please make some videos on how to write the unit and API tests for the production code!!?
You made more than 2hrs+ live😮😮😮.
Best work sir, please keep posting springboot projects sir
So now I know what am I doing this weekend 😂
😂😂
no words to say its awesome sir...plz make video of springboot sir
Watched fully✅
Great lecture Reddy garu
Excellent
Great work....please bring more of these
Great work sir..thanks....
what are the dependancies used in this project?where is the day 1 link?
Good content Sir ❤❤❤ But Sir white background screen use kare ❤❤❤
Hello Navin first of a big thanks that your doing a greate job by creating so detailed and covering each and every topic so crystal clear.
I need a suggestion i have 5 + years of experience in software testing and i am a BCA graduate, Can i switch my domain as backend developer ??
Excellent!
39:03
Hi Naveen, instead of creating local variables to convert the string to lower case from get methods, can we use p.getName().toLowerCase().contains(str).
Big fan sir
Nice demo
Good Morning Naveen Sir, I'm a dotNet developer with 2yrs exp total (1.5yrs in dotnet) and i wanted to switch for java developer. Can I go ? And I'm also learning Java beginner course videos from you sir.
Nice
please make video on user register and login in spring boot
Can you please make video on spring security
There is a video separate on it u can find it
Can You pls add time line it will be more helpful Navin sir
Sir please share the code link in the DESCRIPTION box.
Hey Siri ! want to gain knowledge in java and spring boot
siri be like: redirecting to Telusko channel by ur fav Navin Reddy
haha :) jokes apart but probably no one can match you in teaching a concept to anyone efficiently
because of u lot of them became java developers here and it's not specifically bounded to java only
Thanks a lot 😇
sir is this development structure similar to real world projects , I mean is this how real projects are developed?
Similar but bigger and more complex 😮. That’s the real truth unfortunately.
Nice one
sir what build system will give this project
Spring uses Annotations heavily, even though I know what annotations are I do not understand how they work in Spring :-(
Can I put this in my resume
Timestamps?
Please make tutorial for hibernate old is bit dated
49:00
1:23:18
please provide code
only Intellij IDE
for ecosystem
one comment
First two Assignment service class methods:
public List searchByPlace(String string) {
return list.stream().filter(n -> n.getPlace().equalsIgnoreCase(string)).collect(Collectors.toList());
}
public List findOutOfWarrantyProduct() {
return list.stream().filter(n -> n.getWarranty() < Year.now().getValue() ).collect(Collectors.toList());
}