Spring Boot
D ifferent options of creating Spring Boot projects with Maven and Eclipse 1. Spring Initializr https://start.spring.io 2. STS (Spring Tool Suite) Eclipse Plugin https://www.eclipse.org/community/eclipse_newsletter/2018/february/springboot.php 3. Manually Create a Maven Spring Boot Project - Create Maven Project - Provide Group id, Artifact Id, and version - Add in the appropriate Spring Boot starters into the pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </de