Page 2
Supported versions with API versioning using the Spring framework
When enabling API versioning using Spring Framework 7 or later, in addition to defining the default version for endpoints that do not have a version defined, you can also define a list of versions supported by your API by using the addSupportedVersions() method when configuring… Read More
API Versioning using path parameter with Spring framework
In the previous tutorial, I showed you how to enable API Versioning for the request header in a Spring application. In this tutorial, we will continue to learn how to enable API Versioning for the path parameter! I will also create a new Spring Boot… Read More
Video: What Is Dependency Injection? | Easy Explanation with Examples
Video: Apache Maven Introduction: POM File, Local & Remote Repositories Explained
API Versioning using request headers with Spring framework
API Versioning is a new feature of Spring supported since version 7, which helps us easily add a version for RESTful APIs in the request header, in the path parameter, in the media type parameter, in the query parameter, or a custom version resolver. In… Read More
Video: Install Apache Maven the Easy Way with SDKMAN! (Mac/Linux Guide)
Introduction to Apache Maven
In the past, when Apache Maven was not available, if you worked with Java applications that used external libraries, you had to manually download those libraries and add them to the classpath so that your application could use them. Using Apache Maven, you will no… Read More
Video: Mastering the Switch statement in Java – Part 1
