Top 7 Spring Boot Starters You Should Know in 2024 - Java Brains

  Рет қаралды 59,139

Java Brains

Java Brains

Күн бұрын

Join this channel to get access to exclusive courses all taught by Koushik:
/ @java.brains
In this video, we're diving into the essential world of Spring Boot and its starters. This is a comprehensive guide on the "Top 7 Spring Boot Starters" that you absolutely need to know, whether you're just starting out with Spring Boot or you're a seasoned pro looking to refresh your knowledge.
In this video, I'll be exploring the significance of these starters, explaining how they can dramatically simplify your development process by handling a lot of the boilerplate code and configuration for you. From foundational aspects to more specific functionalities, these starters cover a range of needs for building robust and efficient Spring Boot applications.
👍 If you find this video helpful, please hit that like button and consider subscribing. It really supports the channel and motivates me to create more content like this.
🔔 Don't forget to ring that notification bell so you don't miss any new videos.
💬 I would love to hear from you! Which Spring Boot starter do you find most useful? Or is there one you think deserves to be on this list? Drop your thoughts and questions in the comments section below.

Пікірлер: 41
@aabhasjain96
@aabhasjain96 5 ай бұрын
00:51 - 00. spring-boot-starter. 02:05 - 01. spring-boot-starter-web. 03:44 - 02. spring-boot-starter-security. 05:04 - 03. spring-boot-starter-data-jpa. 07:44 - 04. spring-boot-starter-test. 09:22 - 05. spring-boot-starter-actuator. 11:10 - 06. spring-boot-starter-amqp. 13:13 - 07. spring-boot-starter-batch.
@killerbean9368
@killerbean9368 5 ай бұрын
Excellent instead of watching monotonic preach 😂
@anyname8803
@anyname8803 5 ай бұрын
cool as usual. may i suggest a topic that you should cover: a comparaison between Jdbc Client, JdbcTemplate, Spring Data Jdbc and Spring Data JPA to access a database. I am sure many developers are a little bit confused about these and couldn't tell each apart.
@bekone
@bekone 5 ай бұрын
So much this! I am new to this and to be honest I am kinda lost.
@StefanBanu
@StefanBanu 5 ай бұрын
I confirm, it would be great to understand the differences between these.
@techforserious60
@techforserious60 4 ай бұрын
And hibernate too, tricky to not have them all merge together in your mind hehe
@gowthambhat1498
@gowthambhat1498 5 ай бұрын
I'm in absoulte love with your new video series on Spring Boot, wish you a peaceful year. Cheers!!
@AlokRatnaparkhi
@AlokRatnaparkhi 5 ай бұрын
+1 Dev tools starter is life saving.
@subhajitbanik900
@subhajitbanik900 5 ай бұрын
Thanks for making this video ❤ I think spring-boot-starter-aop is also very useful too.
@mobe1164
@mobe1164 5 ай бұрын
YOU ARE ABSOLUTELY GREAT MAN! THANKS A LOT!
@paritoshkulkarni7813
@paritoshkulkarni7813 5 ай бұрын
Thank you for making very informative videos.
@kdurgiya
@kdurgiya 5 ай бұрын
You sir, should've 200-gazillion interactions with your videos (views/likes/comments/etc) :D fantastically simple - or simply fantastic work again, thanks !
@abdulhayuralov5863
@abdulhayuralov5863 5 ай бұрын
Thank you very much
@svalyavasvalyava9867
@svalyavasvalyava9867 3 ай бұрын
Awesome video, thank you ☺️
@ayed-al-nator
@ayed-al-nator 5 ай бұрын
Thx ❤
@ashish23081991
@ashish23081991 5 ай бұрын
glad i listened to it.
@tanvipagare5929
@tanvipagare5929 5 ай бұрын
Please make a video of mockito.
@the7odmelmoney
@the7odmelmoney 5 ай бұрын
Thank you Sir.
@Java.Brains
@Java.Brains 5 ай бұрын
You are most welcome
@lts8683
@lts8683 5 ай бұрын
Can you make a video about how to create an example of spring boot starter
@konstantingromov6485
@konstantingromov6485 5 ай бұрын
I would say that spring-cloud-stream with binders concept is much more flexible and less coupled to implementation then spring-boot-starter-amqp
@sravaniisha4342
@sravaniisha4342 3 ай бұрын
I'm the biggest fan of your content, Following your videos from 2017. I used to land on your channel whenever I had an interview scheduled of course your content makes me through the interview. Thank you for your contribution to the community. Keep encouraging people like me to achieve more through your videos.
@eswarkumarkatakam6602
@eswarkumarkatakam6602 5 ай бұрын
New subscriber here🎉
@jaiprakashpe
@jaiprakashpe 5 ай бұрын
Which is better for developing backend applications? Java or kotlin? And why?
@NInja0x1Codes
@NInja0x1Codes 5 ай бұрын
Hi sir I am new to spring ecosystem, what are the key topics a spring boot developer should know about spring/spring boot ?
@Java.Brains
@Java.Brains 5 ай бұрын
I suggest you check out my Spring Boot playlist. It'll get you started on the right foot
@ayushjaiswal4449
@ayushjaiswal4449 5 ай бұрын
One thing about jpa and hibernate I want to clear out that I felt during my internship is that people prefer hibernate to write a single dao class or repository class to handle all the entity related queries and I have seen code written in so unique way that a spring data jpa lover will feel jealous of why not learning hibernate but the moment you try you will quit it 😂. But on the other hand spring data jpa it is easy to implement and learn if have the resources. I love how it uses projections and specifications. Spring Data JPA is for fast development and Hibernate is for secure and stable development with less code for dao write once and use every where
@ek19751
@ek19751 5 ай бұрын
Are you available for private, paid consultations to advice firms?
@sahiltaneja4150
@sahiltaneja4150 5 ай бұрын
Hi Kaushik, I have found a couple of courses on your website. Dollar amount converted into INR, these courses seem to be quite expensive as compared to other education platforms like Udemy etc. Can you please provide your courses at affordable prices for Indian students/professionals as the large count of learners in India * affordable price can be a huge number and its a win win situation for you and us.
@manidharkumar3726
@manidharkumar3726 5 ай бұрын
Lombok as it can replace lot of setter,getter and constuctirs
@JamesStansell
@JamesStansell 5 ай бұрын
Lombok is great for demos and fine for small utility apps but there are valid concerns with it for apps that you will deploy to production. I am looking into Java 17 records as a better choice for removing constructors/getters/setters.
@user-cu9dq5xw7x
@user-cu9dq5xw7x 4 сағат бұрын
Please for all not only for members
@GooogleGoglee
@GooogleGoglee 5 ай бұрын
Please make a video with some working examples
@mdelim3128
@mdelim3128 5 ай бұрын
im going to change career next year and thinking of learning java and its frameworks aswell sadly i have to learn javascript as to be able to enter in the tech industry after i finish my bootcamp
@Java.Brains
@Java.Brains 5 ай бұрын
Learning JS is not "necessary" tbh, if you plan to be a backend-only developer. But it really depends on a few other factors, I'll admit. Good luck!
@christophjahn6678
@christophjahn6678 5 ай бұрын
I want to echo what @Java.Brains said. If you want to do front-end stuff, yes you need JavaScript. But absolutely not for the back-end. I have been in the industry for more than 25 years and did BASIC, Pascal, Perl, a bit of Ruby, Bash and mostly Java.Besides, I dislike languages that are not strongly typed.
@gianni499
@gianni499 5 ай бұрын
Thanks for the update Sir. But I actually wanted to draw your attention to the fact that the course Docker Essentials on KZbin isn't complete.I tried to send an email but it seemed to have not been noticed. The course kzbin.info/www/bejne/eZKvlI2ghNxqjdU has several missing videos and some videos have thumbnails that don't match with titles. Please kindly recheck and upload the correct videos, thanks Sir!
@user-pg7es4uf1w
@user-pg7es4uf1w 5 ай бұрын
Jdbc vs Hibernate why we use Hibernate I gave all the bla bla differences answers interviewer not happy with that but I am still selected in that company
@nagaavinash4336
@nagaavinash4336 Ай бұрын
Spring boot devtools
@Tony-dp1rl
@Tony-dp1rl 5 ай бұрын
Who is out there starting a new project with Spring Boot. I mean really.
@lancelotthefallen763
@lancelotthefallen763 5 ай бұрын
Super cooool sir, i remember when I was in college and was panicking with training pocs and your videos came to rescue and got me placed 🥹 thanks sir, keep it up!
Do these 5 things first
20:38
Java Brains
Рет қаралды 21 М.
4 Spring Boot Mistakes to AVOID in 2024
15:18
Java Brains
Рет қаралды 53 М.
How to bring sweets anywhere 😋🍰🍫
00:32
TooTool
Рет қаралды 51 МЛН
Which one of them is cooler?😎 @potapova_blog
00:45
Filaretiki
Рет қаралды 10 МЛН
What is JWT? JSON Web Tokens Explained (Java Brains)
14:53
Java Brains
Рет қаралды 1 МЛН
Top 10 Spring Annotations to know in 2024
26:41
Java Brains
Рет қаралды 71 М.
Top 8 Spring Properties You Should Know in 2024
18:44
Java Brains
Рет қаралды 40 М.
10 Spring and Spring Boot Common Mistakes You Need To STOP
15:49
Amigoscode
Рет қаралды 140 М.
Top 5 JUnit Tips You Should Know - Java Brains
15:56
Java Brains
Рет қаралды 25 М.
Top 25 Microservice Interview Questions Answered - Java Brains
39:54
What is OAuth really all about - OAuth tutorial - Java Brains
10:56
Spring Boot + Spring Security + JWT from scratch - Java Brains
39:29
5 Common Mistakes Spring Developers Make
18:06
Dan Vega
Рет қаралды 15 М.