-
Notifications
You must be signed in to change notification settings - Fork 0
Home
C-S-Patil edited this page Oct 22, 2024
·
5 revisions
Welcome to the SpringBoot wiki! You can create any new SpringBoot project through online tools. I'm using Spring Initializr for this project. I'm creating a maven project with the Java language of Spring Boot version 3.3.3. (Spring init doesn't have this option, but you can change it in the POM file.) Also, we have 2 types of packaging:
- JAR (Java Archive)
- WAR (Web Archive)
I'm selecting JAR here because WAR is generally used for Web applications.
You can refer to this screenshot for the required values:

After generating the zip file, extract and open it with any IDE. I'm using IntelliJ.
The next step is to set up the Application as below:

In the Application.java file add syso of Hello World..!!

And All Set...!!