Skip to content

Running

Nadeem Mohammad edited this page Jun 10, 2020 · 18 revisions

Deploy It in Cloud

Since it is spring boot application it can be deployed on cloud

  • VM Running Tomcat
  • As an standalone app in VM
  • Deployed on Kubernetes cluster

Command Line locally

  • Using java -jarcommand (foreground)
  • Double clicking (background)

We can even make it start after application boot

Locally on Docker

We can even use docker run -dit --restart unless-stopped option to make sure application starts after every boot.

Create folder

Eclipse

For development purpose we can run from eclipse as well. WishingApplication ==> Run As 🏃 ==> Java Application

Next

What Next?