About the Project
This project aims to create a small Notes API using Spring Boot. The main goals of the project are:
Learn backend fundamentals
Understand HTTP GET and POST operations
Grasp Java class, list, and method structures
Project Structure com.rencber.notesapi │ ├── model → Note.java (Data template for notes) ├── controller → NoteController.java (Class handling HTTP requests) ├── service → (Business logic will be added later) ├── repository → (Database connection will be added later)
Java 17+
Spring Boot 3+
Maven
Postman (for API testing)
The project is entirely for learning purposes.
Every commit and file is filled with comments to document the learning process.
The goal is to understand backend fundamentals step by step through this project.