Spring Boot REST API Example – Step-by-Step Guide
Building robust and scalable REST APIs is a common requirement for modern web development. This application will explore how to create REST APIs for CRUD operations using Spring Boot framework.…
Gradle build tool tutorials
Gradle is a build automation tool for multi-language software development. It controls the development process in the tasks of compilation and packaging to testing, deployment, and publishing. Supported languages include…
How to create multi module java project with gradle
In this article i will show you how to create a gradle based multiple module project. We will create different modules and we will see how we can utilize the…
How to Install OpenJDK 17 on Ubuntu 22.04 or 20.04
Java remains an enduring and versatile language in programming, with OpenJDK 17 marking its latest evolution. If you’re looking to harness the capabilities of OpenJDK 17 on your system, this…
Instructions for creating Spring Boot with many modules using Gradle
Gradle is an open-source that automates the process of packaging a project with the main advantage of high customization and good performance. Gradle was born later and improved weak parts…
10 Tips to Use Gradle With IntelliJ IDEA
If you’re building Gradle projects in IntelliJ IDEA, you’re probably not using the IDE to its full advantage. So to help you save time and avoid unnecessary work, here are…
What’s the Gradle Wrapper and Why Use it?
The Gradle wrapper is a script you add to your Gradle project and use to execute your build. The advantages are: you don’t need to have Gradle installed on your…
Run Your Maven Build Anywhere with the Maven Wrapper
In this article, we’ll learn about the Maven Wrapper - what problem it solves, how to set it up, and how it works.
Run Your Gradle Build Anywhere with the Gradle Wrapper
Gradle is a build automation tool that supports multi-language development. It is helpful to build, test, publish, and deploy software on any platform. In this article, we will learn about…
Building a Multi-Module Spring Boot Application with Gradle
The Spring Initializr is a great way to quickly create a Spring Boot application from scratch. It creates a single Gradle file that we can expand upon to grow our…