Spring Boot is a toolset that includes.... I can get started creating Microservice automaticly I can create a Spring Boot project via... 1) I can open the URL and fill in a form, and download a zip file https://start.spring.io/ 2) If I am using the Spring Tool Set (STS Eclipse tool) I can do File -> new -> Project... and select a Spring Boot project 3) I can copy an existing Spring Boot project and change the Maven/Gradle build 4) I can write the pom.xml by hand 5) I can dowload the Spring Boot CLI jar and build a command line to create the project spring init \ --boot-version=3.0.4 \ --type=gradle-project \ --java-version=17 \ --packaging=jar \ --name=product-service \ --package-name=se.magnus.microservices.core.product \ --groupId=se.magnus.microservices.core.product \ --dependencies=actuator,webflux \ --version=1.0.0-SNAPSHOT \ product-service