How to create a Maven Multi Module project in Spring Boot
This article describes , what is maven multi-module project , how we can create a maven multi module architecture and why we need this architecture also how you can create…
Favourite tutorials for developers
Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let programmers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need to recompile.
This article describes , what is maven multi-module project , how we can create a maven multi module architecture and why we need this architecture also how you can create…
This article is a step by step guide to setup and develop Spring Boot applications using Visual Studio Code. I will be building a simple Spring Boot service from scratch…
Learn Spring Boot with the following in-depth tutorials, covering from basic concepts to advanced concepts such as packaging, deployment and monitoring. Most of these tutorials cover the changes introduced in…
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.…
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…
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…
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…
In this article, we’ll learn about the Maven Wrapper - what problem it solves, how to set it up, and how it works.
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…
In Spring Boot, a @Bean is a method-level annotation that is used to declare a bean and register it with the Spring container. And @Configuration annotation is used in Spring…