I am new to Spring and Spring Boot and this might be a very basic question but I am confused while running the spring boot app.
I am using STS as my IDE. I have created a Spring boot application using spring boot starter. To run the spring boot application I see Run As - Spring Boot Application , Java Application.
- What is the difference between running as Spring Boot Application and Java Application.
- From the command prompt I can execute the jar using java -jar demo.jar . java -jar demo.jar runs the jar as a spring boot application or a Java Application? If spring boot application , how can I run it as a java application from the command prompt.
Thanks in advance.