This is just a little cheat-sheet about how to run a Spring Boot application.
If we have generated the .jar file, we can run it like that:
$ java -jar target/myproject-0.0.1-SNAPSHOT.jar
If we are using the maven plugin:
$ mvn spring-boot:run
If we are using the Gradle plugin:
$ gradle bootRun