Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 779 Bytes

File metadata and controls

17 lines (14 loc) · 779 Bytes

Java SprintBoot

Our project uses Spring Boot with Gradle to build backend infrastructure for generating API routes for frontend interaction. The main goal is to provide endpoints for efficient data retrieval and manipulation, including fetching data, adding entities, and handling errors with comprehensive logging and exception management.

Set up database

Set up datbase according to this tutorial.

Download repository

Copy repository to your local machine.

Tips

If port is occupied:

  1. netstat -ano | findstr :8080
  2. taskkill /F /PID [taskid]
  3. ./gradlew bootRun --stacktrace