There are two options
- Using the Maven wrapper ./mvnw or mvnw install
- Using the Maven client: mvn
At the top of the project run an install to download the relevant dependencies and compile the code
./mvnw install
At the top of the project start spring boot which will run your jar, and any REST endpoints should be available at http://localhost:8080/{METHOD_NAME}
./mvnw spring-boot:run