Building a new project downloaded using https://start.spring.io/ does not run on browser. I have seen some solutions on stackoverflow which require to make some changes or add, but default/out-of-the-box application does not run.

http://localhost:8080/

Screen Shot 2020-03-21 at 11 24 32 PM

STEPS TO REPRODUCE:

Download new project at https://start.spring.io/

screenshot-start spring io-2020 03 21-17_59_44

mvn clean package

Screen Shot 2020-03-21 at 6 01 17 PM

mvn spring-boot:run

Screen Shot 2020-03-21 at 11 19 46 PM

Comment From: spencergibb

You need to add request mappings or something else. There's no default mapping for the root

Comment From: snicoll

That's indeed the default error page showing you a 404. There's no mapping for the root by default so that error message is expected. If you have further questions, please follow-up on StackOverflow, as mentioned in the guidelines for contributing, we prefer to use GitHub issues only for bugs and enhancements.