Wow man, this was absolutely fantastic! I’ve been using streams for a while, and this was extremely helpful. I always had some confusion between map/flatmap, and why you’d use one vs the other. You helped clear that confusion right up! This tutorial was so easy to follow and simple to grasp. Keep up the great work!
You are underrated brother. Your contents are amazing, I just switched from support project to dev with 250% hike. All thanks to your videos. Please keep up the good work. ❤️🙌🏻
It was really helpful. My interviewer asked me the salary sum question and I was not able to answer that, but since then I was looking for a correct answer. Now I have got the answer . Thank yo so much
Really awesome as always sir . Thank you . Requesting you to kindly make a video on how to implement spring security in a Microservice based application if possible . Thank you again 🙂
Few things I found missing. One is that theoritical aspect of each feature that you have implemented. Like what is stream, what are advantages, stream vs paralle stream, what is optional. Implementation is awesome. It covered everything related to stream.
when i heard streams assumed it gonna be tough, then when i implement it, i realize i have been doing this in javascript all this time already. relief.
Hello Sir, Greetings ! This is a really helpful video to understand Java 8 new features. From Java 8 , we can have concrete methods in an interface also. An Abstract class could also have concrete methods and abstract methods. I am stuck at a point where it has become really difficult to understand and choose between abstract class and interface. Could you please share some use cases or scenarios when to use interface and when to use abstract class. Any examples would be really helpful. Thanks!
Hi Shabbir, great content . I recently came over this interview coding question where the interviewer asked to solve using Java8 and i ended up not doing it. Can you please make a video on this and this kind of interview question. Q) Given a integer array/List need to increment the odd number by 2 leaving even number . Input: [1,2,3,4,5,6,7,8,9,10] output: [3, 2, 5, 4, 7, 6, 9, 8, 11, 10] using java8 If it is not possible to make video on this small topic if you think. Please paste the answer here. Thanks in advance
public class interviewQues { public static void main(String[] args) { List abc = Arrays.asList(1,2,3,4,5,6,7,8,9,10); List iq = abc.stream() .map(n -> {if(n%2==1) return n+2 ; else return n ;}) .collect(Collectors.toList()); System.out.println(iq); } }
I have a large list that is paged blind. Pagination is done in the Core of the project, Now how can I get the sum of a column of entity in the overall result without pagination?
Hi, Can you please give session on snakeyaml to validate yaml files and schema.if file have wrong fields or syntax it should throw error while parsing.
Not able to perform this operation employees.stream().map(e-> e.getProjectCode()).flatMap(strings-> strings::stream) its throwing error 18:30 , misplaced construct. I think you are passing some lambda function.
Wow man, this was absolutely fantastic! I’ve been using streams for a while, and this was extremely helpful. I always had some confusion between map/flatmap, and why you’d use one vs the other. You helped clear that confusion right up!
This tutorial was so easy to follow and simple to grasp. Keep up the great work!
Thanks 🙏🏻
FIRST TIME SOME ONE I UNDERSTOOD PROPERLY IN UNDERSTANDING STREAMS
Thanks 🙏🏻
You are underrated brother. Your contents are amazing, I just switched from support project to dev with 250% hike. All thanks to your videos. Please keep up the good work. ❤️🙌🏻
Awesome 👏
Congratulations 🎉
Thanks 🙏🏻 you just made my day
which company gave you such a big hike bro? I am looking to switch as well
I always admire the way you teach lessons.
Thanks 🙏
one is the best videos on steam API ❤.. thank you so much bro for this amazing video
Thanks 🙏🏻
It was really helpful. My interviewer asked me the salary sum question and I was not able to answer that, but since then I was looking for a correct answer. Now I have got the answer . Thank yo so much
Glad it was helpful 🙏🏻
That was huge. thanks you, all clear and undestandable
Really awesome as always sir . Thank you . Requesting you to kindly make a video on how to implement spring security in a Microservice based application if possible . Thank you again 🙂
Excellent Way to explaining and very objectively covered topic. So peoples are learning coding and feel confident!!. Thank you
Thank you so much 😊
I understand clearly this Stream API topic. thank you
Bro I really understand functional programming today i.e. stream by ur example, thank you for ur tutorial
Glad to hear that it was helpful 🙏🏻
Thanks 🙏🏻
Omg! I am waiting for this concept. Thank you so much. Please also start a series on Spark and Scala. Eager to learn !
The best. Thank you. Can you also do a complete microservice course where you pick a project and we build it with microservice architecture?
Please keep posting. Always a useful content..!! Thanks for posting.
🙏🏻
Great tutorial.
Please create a tutorial on lambdas, bifunction, biconsumer, bipredicate etc
It's simple clear and very helpful thanks man😊
Thanks 👍
Few things I found missing. One is that theoritical aspect of each feature that you have implemented. Like what is stream, what are advantages, stream vs paralle stream, what is optional. Implementation is awesome. It covered everything related to stream.
In this video I focused on its usage rather than theory
I will try to cover theoretical aspects as well 👍
Perfect video bhai , please make some more videos on concepts of java 8+ like this
Thanks 🙏🏻
Planning on it
really good explanation about Streams. Thanks a lot :D
🙏🏻🙏🏻
Great work man.
Can you make a video on collections framework.
Planning on it
amazing, also make video on all the tools at our disposal while using streams, including scenario-based usages and best practices.
Bro ..your videos amazing..can we have full stream api method overview ..examples
when i heard streams assumed it gonna be tough,
then when i implement it, i realize i have been doing this in javascript all this time already.
relief.
Yes 👍
It’s easy
Thank u very much bro. I am waiting for this topic .
Very useful and very informative
My favourite TH-camr
Thanks 🙏🏻 ❤️
Great explanation of all the concepts as always brother 👍👍
Keep doing the good work 🙏
Thanks 🙏🏻
@Daily Code Buffer please we need CI/CD pipelines and Github Actions For Spring Boot (medium to Large Projects) pleaseee and keep going
th-cam.com/video/snZtITKxUBM/w-d-xo.html
You can check this video for CI/CD pipeline with GitHub Actions
superb video learning alot.. please make a video how to function way of programming in java 8+.
Very good explanation bro. One small request if you have time please explain java memory management and performance.
Thank you so much..very good explanation
Thanks 🙏
Thanku you for providing valuable information sir 🙏🙏🙏🙏
🙏🙏
Thank you Bro. Always at the top level
Thanks 🙏🏻
Can you please tell me which theme are you using in intellij? It's awesome bro
Great tutorial!
Thank you 🙏🏻
Thanks 🙏
Hello Sir,
Greetings !
This is a really helpful video to understand Java 8 new features.
From Java 8 , we can have concrete methods in an interface also. An Abstract class could also have concrete methods and abstract methods.
I am stuck at a point where it has become really difficult to understand and choose between abstract class and interface. Could you please share some use cases or scenarios when to use interface and when to use abstract class. Any examples would be really helpful.
Thanks!
Hi Shabbir, great content . I recently came over this interview coding question where the interviewer asked to solve using Java8 and i ended up not doing it. Can you please make a video on this and this kind of interview question.
Q) Given a integer array/List need to increment the odd number by 2 leaving even number .
Input: [1,2,3,4,5,6,7,8,9,10] output: [3, 2, 5, 4, 7, 6, 9, 8, 11, 10] using java8
If it is not possible to make video on this small topic if you think. Please paste the answer here.
Thanks in advance
Surely I will do
public class interviewQues {
public static void main(String[] args) {
List abc = Arrays.asList(1,2,3,4,5,6,7,8,9,10);
List iq = abc.stream()
.map(n -> {if(n%2==1)
return n+2 ;
else return n ;})
.collect(Collectors.toList());
System.out.println(iq);
}
}
List collect = list.stream().map(x -> x % 2 == 0 ? x : x + 2).collect(Collectors.toList());
Really well explained.
Thanks 🙏🏻
Excellent tutorial.
Thanks
Bro your videos are super helpful. plz do a video on spark web framework as well.. cant find it anywhere on TH-cam.
Really good one.
Thank you 🙏🏻
Thanks u bro u r a killer of code crusher 🥳🥳🥳
🙏🏻🙏🏻🙏🏻
Thank you Shabbir ...amazing video
One video post collection framework
Thanks 🙏🏻
Please continue this series
Yes, Planning to do so
Thanks 🙏🏻
incredible video. thanks a ton
🙏🏻❤️
fantastic....Pretty good content.
Thanks 🙏🏻
Very nice explanation 👍
Thanks 🙏🏻
Really good one 👍
Thanks buddy 🙏🏻😊
in 18:13 you could use employees.stream().filter().flatmap instead of employees.stream().map().flatmap right?
Can you take an advanced topic on Stream API?
This is useful. thanks.
Glad it was helpful!
Are you providing any online training on spring boot and microservices
Perfect video !
Thanks 🙏🏻
Excellent 🚀🚀🚀🚀
Thanks buddy 🙏🏻🙏🏻
Which theme you are using bro is a nice theme, very informative video keep it up 👍
Thanks 🙏🏻
It is Xcode Dark theme with Atom icon pack
bhai..thank you so much for the content
Can you also please make videos on micronaut framework
can u upload cassandra with spring boot tutorIal and spark with java also, it will be really helpful for us
Thank you for amazing videos!
🙏🏻🙏🏻
Advanced java concepts please.could you please do a video on it.. please
What concept are you looking for?
which plugin is using to display the return types at end of codes?
Thank you sir 🙏
I have a large list that is paged blind.
Pagination is done in the Core of the project,
Now how can I get the sum of a column of entity in the overall result without pagination?
Nice video. Can you do a video on spring cloud
which theme you are using its awsome please tell me?
Xcode Theme
I saw you few days ago . 😊
9:40 why you are create new Employee object into map?
Can we perform the same with hashmap which has key same as student model
Can you please change you editors theme from dark to bright .
Hey Thank you for this Bro!
What theme are you using for Intellij ?
Xcode theme
@@DailyCodeBuffer Thanks,
Bro, do you have any idea how to show the function return type Hint on Itellij ?
Hi,
Can you please give session on snakeyaml to validate yaml files and schema.if file have wrong fields or syntax it should throw error while parsing.
Any pdfs available for spring boot and microservices
Bro thanks so much.
🙏🏻🙏🏻
You are amazing
Thanks buddy 🙏🏻🙏🏻
Can you please make otp (login, forget password with mobile number) video?
thank you :)
Nice video
Thanks 🙏🏻
can you print highest salary in each department wise
Can you please provide link to complete Java 8 playlist?
th-cam.com/play/PLhfxuQVMs-nyWxxtah2pedp5zar-vZ0Yn.html
how can we use hashmap along with streams?
Not able to perform this operation
employees.stream().map(e-> e.getProjectCode()).flatMap(strings-> strings::stream)
its throwing error 18:30 , misplaced construct. I think you are passing some lambda function.
Does stream pass a return value
thank you
🙏🏻🙏🏻
also the icom theme what name is it
Atom Icons
hello man what is your theme i like it
Xacode theme
thanks man iwant to know your plugins for this very good api I like the icons
please reply🥺
I added the list of all plugins i use in the community post
You can check that
reflection next
nice tshirt
2nd comment ###
🙏🏻🙏🏻
First comment
🙏🏻🙏🏻
hiiii
👋
Very useful and very informative
Thanks 🙏
Thank you
🙏🙏