Spring Boot Data JPA — CRUD Application
A backend application implementing CRUD through Spring Data JPA, with entity models and repository interfaces following Spring conventions.
The problem
Before building anything larger on JPA, the mapping between objects and tables has to be second nature.
My contribution
Configured the persistence layer end to end and modelled the entities and repositories.
Detail
Developed a backend application implementing CRUD operations using Spring Data JPA, configuring database connectivity and JPA properties for persistent storage.
Created entity models and repository interfaces following Spring conventions, which made the ORM behaviour — lazy loading, relationship mapping, generated queries — concrete rather than theoretical.