Java Roadmap for 2024
11:28
5 ай бұрын
it's been difficult but....
7:50
6 ай бұрын
You DON'T Need Lombok
9:06
9 ай бұрын
no more Public Static Void Main
7:57
You Worry Too Much About Coding
10:26
Kotlin Tutorial For Beginners 2023
4:54:12
You Dont Need Microservices
8:03
11 ай бұрын
STOP SWALLOWING EXCEPTIONS 🤮
3:01
this is why your code is slow...
9:11
Пікірлер
@Noukih
@Noukih 20 сағат бұрын
Thank you so much, I needed a catch up for my new job, you summed it up very well ! Thanks x
@patrickmckenna4533
@patrickmckenna4533 21 сағат бұрын
he never shows how to set up Postgres....
@jimson7070
@jimson7070 Күн бұрын
i'm new in java and i find it hard to use the imports coding in vscode . please have a git reference
@danielvega646
@danielvega646 Күн бұрын
Can someone explain me why the public keyword wasn't necessary at the PhoneNumberValidatorTest? Is due to the fact that no other module will use the class?
@CLira-oq9zi
@CLira-oq9zi Күн бұрын
I respect you more now, cause I think that same thing about Lombok.
@yashkumarkandoi8143
@yashkumarkandoi8143 Күн бұрын
If you are getting invalid reset request in 1:49:26, you need to change from s3.putObject(path, fileName, inputStream, metadata); to PutObjectRequest putObjectRequest = new PutObjectRequest(path,fileName,inputStream,metadata); putObjectRequest.getRequestClientOptions().setReadLimit(13107300); s3.putObject(putObjectRequest); because this allows you to set a read limit. By default the read limit configured is lower than what we want hence it is showing this error. Hope this helps!
@architectsofthecloud6218
@architectsofthecloud6218 Күн бұрын
This is great information. Thank you so much for this.
@claytonvanderhaar3772
@claytonvanderhaar3772 Күн бұрын
Great tutorial only thing for me was Optional was not working
@vlogs4u968
@vlogs4u968 Күн бұрын
How to create this type of mind map
@xpynim
@xpynim Күн бұрын
are you british?
@alfhnzo
@alfhnzo Күн бұрын
i watched this video 4 years ago, from that day i decided this is something i wanted to do. fast forward 4 years, i'm now a software developer. thank you for showing me it is possible
@sjavaoradev
@sjavaoradev 2 күн бұрын
Hello ! Thank you for your lessons. Please say if extend Function like you did in combination pattern (public interface CustomerRegistrationValidator extends Function<Customer, ValidationResult>). The type of CustomerRegistrationValidator will be ValidationResult ? I can't find any docs about this
@nguyenminh1402
@nguyenminh1402 2 күн бұрын
I always love your tutorial. You make everything clear and simple.
@danielvega646
@danielvega646 2 күн бұрын
How is called the plugin for printing on screen the key shortcuts commands? I couldn't find it
@tymofiivoitenko7543
@tymofiivoitenko7543 2 күн бұрын
number of ads of course per minute is insane
@ehabahmedyassen
@ehabahmedyassen 2 күн бұрын
I followed along with the video but for some reason the tables is not created at 42:46 and i don't see any logs about table creation! Any help?
@moody_moon_coder
@moody_moon_coder 2 күн бұрын
Thank your for producing high quality videos and sharing it free for everyone!
@enricjimenezvelez3988
@enricjimenezvelez3988 2 күн бұрын
As salamu aleikum dear brother (I started in islam 2 years ago...), I have written a book and in the initial dedication I include you along with others who also teach selflessly on KZfaq etc... who have contributed a lot and/or inspired me, I ask you to please my dedication and to be able to include your name + channel in it.Greetings from Spain
@ch3ztana
@ch3ztana 3 күн бұрын
Very useful course, thanks so much for sharing!
@ramseshernandez3725
@ramseshernandez3725 3 күн бұрын
Great Video,
@IVIichal-hu6jp
@IVIichal-hu6jp 3 күн бұрын
I am actually very unmotivated to learn anything about spring boot, since i dont work with java, but i need it for the univerity and this video helped me finish my assignment. :D
@MatheusdaRochaSena
@MatheusdaRochaSena 3 күн бұрын
you're my hero, I don't have money to pay for your course but soon I'll asign up, really, you're awesome man!
@designlife2970
@designlife2970 3 күн бұрын
Awesome and very descriptive with easy explanation. Thumbs up.
@SuperNugget92
@SuperNugget92 3 күн бұрын
So, I have a problem at 56:00 I cant use the StudentRepository. I get the error "Could not autowire. No beans of 'StudentRepository' type found." No Idea why where how. Did everything on pair with the tutorial till that point