Running a Spring Boot application

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
Running a Spring Boot application

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.