Open Issues Need Help
View All on GitHubAI Summary: Create three Spring Data JPA repositories (GroupRepository, ExpenseRepository, UserRepository) extending JpaRepository. These interfaces will handle database interactions for groups, expenses, and users respectively. No implementation is needed; Spring Data JPA will provide the functionality. The next step is to verify database connectivity and data retrieval.
Its a Basic Splitwise Clone Project built with Java Full Stack
AI Summary: Create Java POJO (Plain Old Java Object) classes for Group, Expense, and User entities to represent the database schema for a Splitwise clone application. These classes will use JPA annotations for mapping to MySQL tables. The Group class will contain a list of Users, and the Expense class will include details about the expense, who paid, and how it was split.
Its a Basic Splitwise Clone Project built with Java Full Stack
AI Summary: Set up a Spring Boot backend for a Splitwise clone, including project structure, dependencies (Spring Web, Spring Data JPA, MySQL Driver), and basic package structure for controllers, models, repositories, services, and exception handling. The goal is to have a runnable Spring Boot application without errors.
Its a Basic Splitwise Clone Project built with Java Full Stack