Task 3: Create Repositories (Interfaces)
Task Details:
- Extend
JpaRepository for all repositories.
- You don’t need to implement anything in the repository; Spring Data JPA will handle it automatically.
Next Step: Test if your repositories can correctly connect to the database and fetch data (for example, by creating some sample records via a simple test or manual insertion).
Task 3: Create Repositories (Interfaces)
Objective: Set up the Spring Data JPA repositories to perform database operations.
GroupRepositoryinterface.ExpenseRepositoryinterface.UserRepositoryinterface.Task Details:
JpaRepositoryfor all repositories.Next Step: Test if your repositories can correctly connect to the database and fetch data (for example, by creating some sample records via a simple test or manual insertion).