Member-only story
Spring Boot Tutorial With Project
In this tutorial we are going to learn everything about Spring boot framework that every Java developer should need to know.
In this tutorial We will create one spring boot project that contains CRUD (Create , Read/Retrieve , Update, Delete) API’s. Where we are going to have three layers and also we are going to connect to a real database and we will see how this work.
Spring Boot is an amazing framework for building an applications where you want to build back-end applications or full stack applications using java.
Spring Boot framework gives you everything that you need in order to build applications If you need security you can use security modules, If you need logging you can use logging integration, connecting to a database whether you want to connect to any SQL or NOSQL database. They made it super easy for you as a developer to connect to any Database.
In this tutorial we are going to learn these topics :
1. What is Spring ?
2. What is Spring Boot framework ?
3. Why we need Spring Boot framework ?
4. What is Spring Boot CRUD operation ? We will create Rest API using spring boot framework and will perform all the CRUD operations like create, read/retrieve, update and delete.
5. How to connect with SQL database.
6. How to implement Swagger UI to test our Rest API ?
7. How to add logging into spring boot project ?
8. How to handle exception in spring boot project ?
9. How to write Junit test cases using Mockito framework for our rest API’s all…