Skip to main content

Command Palette

Search for a command to run...

Create a simple Spring Boot project using Spring Initializr

Published
1 min read
M

Mohamad's interest is in Programming (Mobile, Web, Database and Machine Learning). He is studying at the Center For Artificial Intelligence Technology (CAIT), Universiti Kebangsaan Malaysia (UKM).

A simple Spring Boot project you can create using Spring Initializr:

Project Details

  • Project Type: Maven Project

  • Language: Java

  • Spring Boot Version: 2.7.0 (or the latest stable version)

  • Group: com.example

  • Artifact: demo

  • Name: demo

  • Description: A simple demo project

  • Package Name: com.example.demo

  • Packaging: Jar

  • Java Version: 11 (or your preferred version)

Dependencies

  1. Spring Web: To create RESTful web services.

  2. Spring Boot DevTools: For automatic restarts and live reload (optional).

Steps to Create

  1. Go to Spring Initializr.

  2. Fill in the above details.

  3. Select the Spring Web dependency.

  4. Click Generate to download the ZIP file.