Student Organizer is a full-stack Java Spring Boot application designed as an organizational tool for students to efficiently manage their courses and schedules. The application uses a PostgreSQL database running in Docker, with Hibernate for ORM and JPA for persistence. The web application is served via Apache Tomcat.
- Backend: Java 24, Spring Boot 3.5
- Frontend: Thymeleaf, HTML5, CSS3
- Database: PostgreSQL (Dockerized)
- ORM & Persistence: Hibernate + JPA
- Server: Apache Tomcat
- Build Tool: Maven
- Clone the repository:
git clone https://github.com/lukebaumCS/studentOrganizer
cd studentOrganizer- Start the PostgreSQL database using Docker:
docker-compose up -d- Build and run the Spring Boot application:
mvn clean install
mvn spring-boot:run- Access the application via:
http://localhost:8000