Description
Currently, the project uses a manual Hibernate configuration which can lead to conflicts and makes the setup process complex for beginners. I propose simplifying the persistence configuration by relying on Spring Boot’s JPA auto-configuration.
Proposed Changes:
- Remove the legacy HibernateConfiguration.java
- Remove exclude settings from @SpringBootApplication
- Unified database and JPA settings in application.properties
- Let Spring Boot manage EntityManagerFactory and transaction configuration automatically
This change will improve the developer experience and align the project with modern Spring Boot practices.