Posts

Showing posts with the label Springboot

Getting started with Spring Boot Application and pushing it to Github

Image
Part 1: Creating a SpringBoot Application Introduction: Spring boot is an open source most popular Java Framework which provides flexibility, efficiency, security, ease to the Java Developers. Things you need: IDE JDK 1.8 or later Gradle or Maven - Don't have to install it. IntelliJ provides a default version This project is currently using IntelliJ CE as IDE, Java 11 JDK file and maven as dependency tool. Step by step process to create a simple SpringBoot Application: 1 . Open the IntelliJ IDE. Click on File -> New -> Project 2. Select the project type as Spring Initializer 3. Now, it's time to give it a name.  Group :  specifies the id of the project group. It is actually a set of directories path in which the artifact resides. Artifact : specifies the id of the project. It is actually the project name. Type : Could be maven or gradle. Let's start with a maven project. Version : Could update the version of the project. It is by default set to 0.0.1-SNAPSHOP Group a...