Creating a Hello World Spring Boot Application in Eclipse Using Maven
In this blog post, I will be explaining how you can create a Hello World Spring Boot application in Eclipse using Maven. Edit What is Spring Boot? Spring boot sits on top of Spring. It automatically does the configuration of the application for you by assuming some defaults. These defaults are sufficient to get you started most of the times but you easily change these default values if required. This allows you to have a spring application up and running very quickly without having to bother with boiler plate stuff. All you have to do is tell Spring boot the type of application you are building. It provides Embedded HTTP servers like Tomcat , Jetty etc. which makes it easy to develop web applications. In order to know more about Spring Boot, you can refer to this blog post. Creating Hello World Spring Boot Application Let us now learn how to create a basic Hello World Spring Boot application in Eclipse using Maven Project Creating and setup Step 1 – Create a new Maven Proje