Page 2
New Video: Consume RESTful Web Services with RestClient | Spring Framework 7+
Introduction to Model Context Protocol
Large Language Models (LLMs) or AI models like ChatGPT, Gemini, etc., are only trained on data up to a certain point in time, known as the cutoff point. For example, for ChatGPT at the time of writing this tutorial, its knowledge only extends to April… Read More
Naming convention for RESTful API specs
When defining API specs for RESTful APIs, there are some naming conventions that are best practices that you should follow to make these API specs consistent, intuitive, and easy to maintain. These principles are as follows: Use nouns instead of verbs when naming resources Instead… Read More
Video: Spring 7 BeanRegistrar Explained: Register Beans Programmatically
Consume RESTful API using Spring Framework’s RestClient
If your application uses Spring Framework 7 or later, you can now use the RestClient class to consume RESTful APIs. How exactly? Let’s find out in this tutorial! For example, I will create a new Spring Boot project version 4.0.0 or later, using the Web… Read More
Video: API Versioning with Path Parameters in Spring Framework 7 | Clean & Future-Proof REST APIs
Registering beans in Spring container with BeanRegistrar
Since version 7, Spring has introduced another way for us to register one or more beans at the same time in the Spring container using the implementation of the BeanRegistrar interface. How exactly? Let’s find out in this tutorial! I will create a Maven project:… Read More
Video: API Versioning with Request Headers in Spring Framework 7 — Best Practice Guide
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

