How to start an application without using an IDE?

Viewed 36

A company asked me to do a simple vet project using Spring and Thymeleaf.

One of the requirement’s the applicaton needs to be run without an IDE.

As I researched I need to create a jar file for my project. But the project needs a server and a database. When I create the jar file and send that jar file to the recruiter can they be able to just exec jar file and see what I see in my PC?

2 Answers

For me, this command should work when using maven to run spring-boot project: mvn spring-boot:run

Related