Issue
I'm creating basic spring boot application as in this guide
If I download their completed-guide-code, I get the complete
folder to run and test app.
But if I do practice as start from scratch, install prequisite, go to start.spring.io and config, generate starting project, create web app, create app class, and go to step Run the Application
, I cannot find the folder complete
as in guide, so I can't run and test app. Maybe I should run some build command to create it? So how to create it?
Solution
Please just run mvn spring-boot:run
(use mvnw
if maven is not installed or not on path. Spring boot project contains mvnw
executable) in the project root without the directory specifier.
./
could be used for unix like systems but not windows.
Answered By - Praveen Tiwari
Answer Checked By - Robin (JavaFixing Admin)