No video

What is Spring-Boot Framework? (explained from scratch)

  Рет қаралды 206,661

Visual Computer Science

Visual Computer Science

Жыл бұрын

Hey everyone and welcome back!
In this video we're going to learn what is Spring-Boot framework and how you can create a Spring-Boot project from scratch while touching on dependency injection and configuration management.
This a very short introductory video on Spring-Boot, let me know in the comments section below if you want to see more in-depth videos on this topic.
If you want to support the channel, please check out the Patreon page at: / visualcomputerscience
Spring-Boot Crash-Course link:
www.udemy.com/...
Thank you!

Пікірлер: 109
@MrMikopi
@MrMikopi Жыл бұрын
I'm fine with a fast video, since youtube provides playback speed options, and you can always rewind and catch up again. This was useful for me, thank you
@BRP-Moto-Tips
@BRP-Moto-Tips Жыл бұрын
no issues at all with the pace, this video gave me a great insight, im using NestJs and the fundamentals are nearly the same. im considering starting to learn something outside JS because i think it would be easier to get another jobs. we are many folks doing js lol
@user-eg6kh2rk3y
@user-eg6kh2rk3y Жыл бұрын
Yes we are lol
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Indeed, the fundamentals are the same, they’re essentially web frameworks. If you want to learn more about spring-boot and JVM based programming, feel free to checkout my courses, cheers!
@adityakumar380
@adityakumar380 5 күн бұрын
Ya​@@visualcomputerscience
@danielfebrian61
@danielfebrian61 Жыл бұрын
i saw all these people complains about you being too fast. im on 1.25x and the pacing of the video is fine. keep up the good work!
@visualcomputerscience
@visualcomputerscience Жыл бұрын
I appreciate your feedback! Stay tuned for more content!
@galva1156
@galva1156 6 ай бұрын
And I'm on 1.5 and I still understand just turn on cc bro
@anthonycarella1779
@anthonycarella1779 6 ай бұрын
For anyone have trouble because their Gradle project may have been initialized differently, make sure the dependency is for spring-boot-web-starter and not spring-boot-gradle-plugin. Great video.
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
Yep, it's spring-boot-starter-web, here is the link: mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web/3.2.5
@Zinzano
@Zinzano 5 ай бұрын
Perfect! A lot of useful information in under 5 mins. Good job!
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
Glad it was helpful!
@reasonsincobile903
@reasonsincobile903 Жыл бұрын
Didn’t bullshit,straight to detail,the fastest explanation i needed,on my way to buy the udemy course,thank you for this
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Thank you! Happy to hear that!
@jvjacq
@jvjacq 8 ай бұрын
This video was super helpful, thank you very much!
@zephyrprime
@zephyrprime 22 күн бұрын
What does spring pot have to do with microservices? It sounds like it’s just a rest api framework.
@gerryh763
@gerryh763 24 күн бұрын
Excellent vid, usually I have to speed it up but in your case I had to slow it down lol
@visualcomputerscience
@visualcomputerscience 7 күн бұрын
Thanks! Stay tuned!
@davidharrington5694
@davidharrington5694 6 ай бұрын
Dude, video was an absolute blast!
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
Thanks man! Stay tuned!
@felixnyamongo
@felixnyamongo 4 ай бұрын
my first spring boot video and I love it
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
Glad you liked it! Stay tuned for more!
@expl0itr
@expl0itr 6 ай бұрын
thats cool, I never understood why everyone wanted to learn sb. Now I get it.
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
There is an upcoming video on Gen AI and Spring, stay tuned!
@bpatters7
@bpatters7 Жыл бұрын
Good work! Helpful! Pace was good, I still watched almost all of it at 2X.
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Thank you so much, I’m glad you like it 👍
@DanHolland1
@DanHolland1 7 ай бұрын
I watched this at 0.5x and then at 0.75x with captions. To see the code, I used the period and comma keys to move frame by frame.
@jawagalsrinathn1040
@jawagalsrinathn1040 10 ай бұрын
thanks for your understandable explanation man
@MohammedTellesy
@MohammedTellesy 9 ай бұрын
Good work explaining the Framework. it helped me a lot. Good Luck :)
@brickstv3156
@brickstv3156 8 ай бұрын
Can you go over some common frameworks that you should use.
@georgekatasev7866
@georgekatasev7866 6 ай бұрын
Ty very much Your video is concise and to the point and I love it
@visualcomputerscience
@visualcomputerscience 6 ай бұрын
Thanks! I appreciate that!
@Douglasfaparanhos
@Douglasfaparanhos 8 ай бұрын
Excellent video 👏
@manikandanu2317
@manikandanu2317 Ай бұрын
Thanks very useful introduction
@visualcomputerscience
@visualcomputerscience 27 күн бұрын
Thank you! Glad you enjoyed it
@germanchannel8410
@germanchannel8410 3 ай бұрын
Very good concepts explanation
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
Thanks and welcome!
@DanHolland1
@DanHolland1 7 ай бұрын
Can you explain how the `.toString` method for the Profile object is implemented in the video at 2:38? If you don't manually override `toString` in Java, it returns `nameOfObject@memoryLocationInteger`. Does Spring Boot or a later version of Java automatically print a formatted string, such as `Profile{name='John', address='New York'}`, which displays the values of all object fields?
@visualcomputerscience
@visualcomputerscience 7 ай бұрын
Good question! The .toString method on the Profile object is actually overridden, you can see it at 3:10. Its implementation is generated automatically by Intellij Idea by hitting double-shift, then typing toString. It detects that your POJO doesn't have toString overridden, and it generates that default version of it.
@DanHolland1
@DanHolland1 7 ай бұрын
@@visualcomputerscience Thank you so much!
@samarthtandale9121
@samarthtandale9121 Жыл бұрын
Could you explain the entire java se in one video, like a complete map of java se? ... Like a famous youtuber has made many such maps on computer science, physics, maths, etc. It would help a lot to get a (really) big picture view of java se 🤩
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Thanks for the idea! I'll definitely try it out!
@threefour1598
@threefour1598 Жыл бұрын
Zach Star?
@samarthtandale9121
@samarthtandale9121 Жыл бұрын
@@threefour1598 No, its Domain of Science!
@samarthtandale9121
@samarthtandale9121 Жыл бұрын
@@threefour1598 Zach Star is great too though!
@threefour1598
@threefour1598 Жыл бұрын
@@samarthtandale9121 Yeah. Nice, I don't I've seen his videos. I'll check out domain of science
@alterwalter1554
@alterwalter1554 Жыл бұрын
I didnt find it too fast, but its better for people to speed up the video than to slow it down I think, because animations and stuff also look weirder when slowed down. Nevertheless nice introduction to spring boot 👍
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Thanks for the tip
@BenitoCodes
@BenitoCodes Жыл бұрын
This was too fast and couldn't get anything 😪
@SY27196
@SY27196 Жыл бұрын
Well explained! I dont find speech fastv I can run video at 0.75x
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Exactly! Thanks!
@meemz3144
@meemz3144 11 ай бұрын
very well explained, thanks
@visualcomputerscience
@visualcomputerscience 10 ай бұрын
Thank you! Stay tuned for more content!
@sportac
@sportac 8 ай бұрын
thank you
@Noah-xn5th
@Noah-xn5th 10 күн бұрын
Is Spring boot for java comparable with bootstrap for html/css?
@visualcomputerscience
@visualcomputerscience 8 күн бұрын
Great question, it’s not comparable, bootstrap is a frontend framework (HTML+CSS) while spring boot is a backend framework
@killerdroid99
@killerdroid99 6 ай бұрын
Wow you can change ports of your rest api
@visualcomputerscience
@visualcomputerscience 6 ай бұрын
indeed!
@lucasrecoaro1701
@lucasrecoaro1701 6 ай бұрын
Thanks
@visualcomputerscience
@visualcomputerscience 6 ай бұрын
You’re welcome!
@user-bd4bx5wc3o
@user-bd4bx5wc3o 6 ай бұрын
Video about Kubernetes!!
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
It's on the way! Stay tuned!
@sarmadedge
@sarmadedge 10 ай бұрын
Hi is the 1 hour crash course not available for Udemy Business users ?
@visualcomputerscience
@visualcomputerscience 10 ай бұрын
It’s not available yet for Business users
@mrfabulous3303
@mrfabulous3303 2 ай бұрын
Please make a video in svelte
@visualcomputerscience
@visualcomputerscience 27 күн бұрын
Not sure what svelte is but I’ll check, thanks for the suggestion!
@konstantinklein7050
@konstantinklein7050 4 ай бұрын
ty
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
You're welcome! Stay tuned for more content!
@omarharroud7990
@omarharroud7990 4 ай бұрын
Nestjs is very similar
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
I guess it depends on how you look at it :-D
@blastinnn
@blastinnn Жыл бұрын
Do you need ultimate edition of intellij
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Nope, it works with community edition
@jlpcpr
@jlpcpr Жыл бұрын
So, the whole point of this video was to sell you the Udemy course? This was too fast and unintelligible.
@visualcomputerscience
@visualcomputerscience Жыл бұрын
You can set the playback speed to 0.5x or lower to slow down the video. The point of the video is to explain the basics of spring-boot in 5 minutes, and if you want to go into more details, you can check out the course (at a discounted price). I’ll take your feedback into account for future videos, thanks! 👍
@Aragubas
@Aragubas Жыл бұрын
thanks! x3
@visualcomputerscience
@visualcomputerscience Жыл бұрын
No problem! Stay tuned for more content!
@andresj.s.3568
@andresj.s.3568 Жыл бұрын
thanks!
@visualcomputerscience
@visualcomputerscience Жыл бұрын
You’re welcome!
@ahassan5
@ahassan5 5 ай бұрын
You put your code in a framework and you put library in your code. That's the difference between framework and library.
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
You can also put a library in a framework, I believe :-D
@dehrk9024
@dehrk9024 4 ай бұрын
haha im such a joke of a software dev i never even asked myself what the difference between a library and framework isxD
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
We always learn things, so don't worry, nobody knows every stuff :-D
@jovitalobo1273
@jovitalobo1273 Жыл бұрын
it was too fast . can't understand anything
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Thanks for the feedback, I'll definitely consider it in the next videos
@jovitalobo1273
@jovitalobo1273 Жыл бұрын
@@visualcomputerscience Liked your positive approach of taking feedback...wish u best luck 😊
@ALeX-nz9qk
@ALeX-nz9qk 5 ай бұрын
bro how many romanians are there on udemy ?:)))
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
I saw a lot of them :-D
@row7923
@row7923 5 ай бұрын
"overpriced stocks" lol
@sunnygupta5087
@sunnygupta5087 Жыл бұрын
you speak very fast, difficult to understand
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Does it help if you try to slow down the video speed?
@wisozk7336
@wisozk7336 Жыл бұрын
*promosm* 🙌
@catoflado4977
@catoflado4977 7 ай бұрын
Thanks, I hated It. (Not your vídeo, I hate Spring and Java)
@visualcomputerscience
@visualcomputerscience 7 ай бұрын
But why? It has so many great features :-D
@pavlinpetkov8984
@pavlinpetkov8984 2 ай бұрын
When you are explaining something you must use plain words. The entire video is in Chinese for someone with basic programming knowledge...
@visualcomputerscience
@visualcomputerscience 2 ай бұрын
Thank you for the feedback, I'll consider it for the next videos
@jspiro
@jspiro 2 ай бұрын
This video made perfect sense for someone with programming experience. It depends on the audience. I found it useful.
@zeinebromthana7336
@zeinebromthana7336 5 ай бұрын
perfect but very very fast hhhh
@visualcomputerscience
@visualcomputerscience 3 ай бұрын
Thanks 😅
@reneeaishah3042
@reneeaishah3042 Жыл бұрын
man you talk too fast
@michelvandermeiren8661
@michelvandermeiren8661 Жыл бұрын
It is a framework that allows you to burn 8 gigas of memory and 4 cores for a simple "hello world"
@visualcomputerscience
@visualcomputerscience Жыл бұрын
As you correctly said, it allows you, but it doesn’t force you to do so :-D
@johnlongaski2715
@johnlongaski2715 Жыл бұрын
Not sure if its just cuz im used to java but I had no issue with the pace. Great work
@visualcomputerscience
@visualcomputerscience Жыл бұрын
Thank you! Stay tuned for more content!
@brickstv3156
@brickstv3156 8 ай бұрын
Can you go over some common frameworks that you should use.
@brickstv3156
@brickstv3156 8 ай бұрын
based on your needs
@visualcomputerscience
@visualcomputerscience 7 ай бұрын
Sure, I'll think about a video on that
Java Collections Explained (with examples)
10:39
Visual Computer Science
Рет қаралды 78 М.
#5 What is Spring Boot?
12:12
Telusko
Рет қаралды 51 М.
SPILLED CHOCKY MILK PRANK ON BROTHER 😂 #shorts
00:12
Savage Vlogs
Рет қаралды 44 МЛН
Идеально повторил? Хотите вторую часть?
00:13
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 17 МЛН
Викторина от МАМЫ 🆘 | WICSUR #shorts
00:58
Бискас
Рет қаралды 6 МЛН
IQ Level: 10000
00:10
Younes Zarou
Рет қаралды 13 МЛН
Spring ultimate basics: What are Spring Beans and what is the Spring Container?
16:30
Spring Boot Tutorial | Full Course [2023] [NEW]
1:37:31
Amigoscode
Рет қаралды 2,7 МЛН
Spring Annotations for Experienced Developers #springboot #java
10:51
Using docker in unusual ways
12:58
Dreams of Code
Рет қаралды 437 М.
GraphQL vs REST: Which is Better for APIs?
7:31
IBM Technology
Рет қаралды 195 М.
How to OVER Engineer a Website // What is a Tech Stack?
11:20
Fireship
Рет қаралды 2,4 МЛН
Microservices Explained in 5 Minutes
5:17
5 Minutes or Less
Рет қаралды 728 М.
Learn SpringBoot in 10 minutes | SpringBoot REST API Tutorial
10:33
blondiebytes
Рет қаралды 178 М.
tRPC, gRPC, GraphQL or REST: when to use what?
10:46
Software Developer Diaries
Рет қаралды 78 М.
What is the Spring framework really all about?
10:45
Java Brains
Рет қаралды 776 М.
SPILLED CHOCKY MILK PRANK ON BROTHER 😂 #shorts
00:12
Savage Vlogs
Рет қаралды 44 МЛН