December 6, 2023

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. Apart from building simple REST APIs, we will learn about request validation, error handling, testing, API documentation, and deployment.

Spring Boot REST API Example – Step-by-Step Guide Read More

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 Maven such as cumbersome declaration syntax, difficult to manage, unoptimized build and testing speed. To take advantage of these, today we will create a project Spring boot with multiple module values Gradle ​​instead of the Maven traditional ones.

Instructions for creating Spring Boot with many modules using Gradle Read More

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 machine to build the project, the wrapper guarantees you’ll be using the version of Gradle required by the project, you can easily update the project to a newer version of Gradle, and push those changes to version control so other team members use the newer version.

What’s the Gradle Wrapper and Why Use it? Read More