Posts

Showing posts with the label IntelliJ

Configuring IntelliJ IDE for Java Projects

IntelliJ IDEA is an integrated development environment written in Java for developing computer software. Download IntelliJ Developer edition which is IntelliJ CE Now Configure IntelliJ: Step 1:  Click on IntelliJ IDEA application. Step 2: If this is your first time, it open a welcome screen. Click on Create New Project .  Otherwise, from the main menu, select  File | New | Project . Step 3: In the New Project wizard, select Java from the list. Step 4: To create a Java project, sdk file is needed. If it already in the system, select Add JDK and specify the path to the JDK home directory.  Note: All the projects in this blog are by using JDK 11 If you don't have the necessary JDK on your computer, select  Download JDK . In the next dialog, specify the JDK vendor (for example, OpenJDK), version, change the installation path if required, and click   Download . This takes you to the next step of creating a Java application which can be done from https://beginne...

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...