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/
STEPS TO REPRODUCE:
Download new project at https://start.spring.io/
mvn clean package
mvn spring-boot:run
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.