Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.19 KB

File metadata and controls

34 lines (25 loc) · 1.19 KB

Starting with Spring Initializr

You can use this pre-initialized project and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial.

Project Settings

Setting Value
Project Maven
Language Java
Spring Boot 4.0.0
Group com.example
Artifact rest-service
Java 17
Dependencies Spring Web

Manual Setup

To manually initialize the project:

  1. Navigate to https://start.spring.io. This service pulls in all the dependencies you need for an application and does most of the setup for you.
  2. Choose Maven and Java.
  3. Select Spring Boot 4.0.0 and Java 17.
  4. Type "rest-service" in the "Artifact" form field.
  5. Click Dependencies and select Spring Web.
  6. Click Generate.
  7. Download the resulting ZIP file, which is an archive of a web application that is configured with your choices.

If your IDE has the Spring Initializr integration, you can complete this process from your IDE.

You can also fork the project from Github and open it in your IDE or other editor.

Project-Setup

Screenshot 2025-12-10 at 11 18 06 AM