Before Start
Today writing is summary of below youtube video and records doing it myself.
https://www.youtube.com/watch?v=vtPkZShrvXQ&t=831s(Spring Boot Tutorial for Beginners (Java Framework))
Introduction
- Spring Boot is one of the best frameworks for building applications in the java world.
- Spring Boot can very easy to build applications.
- basically Spring Boot provides you a platform for building back-end applications.
- you can also build web applications as well.
Initialize Spring Boot Project
- you can initialize a Spring Boot project if you using below navigated site.
- Basically allows you to bootstrap your application by picking.
- Dependencies and configuring an actual project.
- and then if you click the checked button below the picture, you can see a lot of dependencies helping development
Dependencies
- This is why Spring Boot is pretty much one of the best Java frameworks for building applications
- These bunch of dependencies give you a lot of flexibilty.
- You can install them and start coding right away instead of you having to configure.
- As well as building web applications, Spring boot helps implementing the security and then giving you this nice pacakage that you can just plug and play.
Do it
Now, try to focus on the first.
I'm gonna use a dependency which is Spring Web Starter(Spring MVC) with Tomcat.
- I generated tthe Spring Boot zip file wtih these options.
- But, In my case I didn't use the zip file because why I'm using the groom ide.
- groom ide can provides a spring boot development env though,
- I use only these options for my Spring Boot project restricted.
Anyway, I generated my project.
I tested my Spring Boot can be started.
It works!
after that, I uploaded to Github my project.