How to Create Spring RESTful API without using Spring Boot
Most Spring Tutorials available online teach you how to create/secure a Rest API with Spring boot. However, sometimes there will be specific use cases where you …
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.
Most Spring Tutorials available online teach you how to create/secure a Rest API with Spring boot. However, sometimes there will be specific use cases where you …
This article describes , what is maven multi-module project , how we can create a maven multi module architecture and why we need this architecture …
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 using VS Code. I’ll show you what extensions to install and how to use the VS Code features to develop and iterate on your Spring Boot application.
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 …
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.
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 common dependencies across different modules and also we will see how to add the dependency of one module within the other module.
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 …
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.
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 …