Create Spring Boot CRUD Application


Table of Contents
  1. Steps to create application
  2. Layred Architecture in Spring Boot
  3. Spring Boot project structure
  4. Explanation of Each class

Steps to create application
Steps:
  1. Open URL: https://start.spring.io/
  2. Select Project Type : Maven (default) or Gradle
  3. Choose Language: Java (default), Kotlin, or Groovy
  4. Spring Boot Version: Choose the latest stable version (e.g., 3.x.x)
  5. Fill Project Metadata
  6. Select Dependencies (like Spring Web, Spring Data JPA, MySQL Driver)


  7. Click Generate to download the .zip file.
  8. Extract the project and open it in an IDE (IntelliJ IDEA, Eclipse, or VS Code).


Layred Architecture in Spring Boot

Spring Boot project structure

Explanation of Each Class
Controller
DTO's
Entity Class
Repository Layer
Service Layer
Main Application Class
application.properties
How to run and test