um-programacion-2-2025-programacion-2-trabajo-practico-5-2025.tp5.template created by GitHub Classroom

3 Open Issues Need Help Last updated: Jul 28, 2025

Open Issues Need Help

View All on GitHub

AI Summary: Create a JPA entity for the 'Departamento' (Department) in a Spring Boot application. The entity should include attributes for ID, name, and description, along with necessary JPA annotations for persistence. A basic test should also be created to verify the entity's functionality.

Complexity: 2/5
enhancement good first issue jpa

um-programacion-2-2025-programacion-2-trabajo-practico-5-2025.tp5.template created by GitHub Classroom

Java

AI Summary: The task involves creating a JPA entity for an Employee in a Spring Boot application. This includes defining attributes (ID, name, surname, email, birthdate, salary), adding necessary JPA annotations (@Entity, @Table, @Id, @GeneratedValue, @Column), implementing constructors and getters/setters (or using Lombok), and creating a basic test to verify the entity's functionality. The entity will be part of a larger employee management system using Spring Boot, JPA, and multiple databases (H2, MySQL, PostgreSQL).

Complexity: 2/5
enhancement good first issue setup jpa

um-programacion-2-2025-programacion-2-trabajo-practico-5-2025.tp5.template created by GitHub Classroom

Java
Crear entidad Proyecto about 1 month ago

AI Summary: This task requires configuring Spring Boot profiles to connect to three different databases: H2 (in-memory), MySQL, and PostgreSQL. This involves creating separate configuration files (application.properties and profile-specific files) with the appropriate connection details, drivers, and dialects for each database. The application should successfully start using the correct database based on the activated profile.

Complexity: 3/5
enhancement good first issue jpa

um-programacion-2-2025-programacion-2-trabajo-practico-5-2025.tp5.template created by GitHub Classroom

Java