Working with Multiple AI Models in Spring AI — @Qualifier, mutate(), and Model RoutingApr 27, 2026·6 min read·20
Spring AI Advisors API in Java: Build Middleware for AI InteractionsSpring AI Advisors API Explained Series: Spring AI Complete Course — Lecture 4 of 12Reading Time: 8 minutesLevel: Intermediate Most developers stop at ChatClient. That is enough for demos. It is not May 6, 2026·11 min read·7
3Sum Closest - Step-by-Step with JavaProblem Statement The problem asks us to find three numbers in an array whose sum is closest to a given target value. Example Input: nums = [-1, 2, 1, -4], **target = 1 **Expected Output**:2` Approach We can solve the problem using the Two Pointer T...Dec 19, 2024·4 min read·42
Azure Spring Cloud - PostGres DatabasePostgreSQL is a powerful, open-source object-relational database system that is widely used for storing and managing data. It is known for its reliability, flexibility, and performance, making it a popular choice for a variety of applications. Spring...Jan 23, 2023·5 min read·173
1962. Remove Stones to Minimize the TotalTo solve the question you can visit the following link https://leetcode.com/problems/remove-stones-to-minimize-the-total/ Explanation The question is asking us to do one operation at a time, the operation is simply to reduce the number of piles to ...Dec 28, 2022·2 min read·73
First Spring Boot App at Azure Spring App and GitHub ActionIn this tutorial, we will look at deploying our app at Spring Azure app. Spring Azure App is an Azure offering to seamlessly deploy Spring boot microservices at Azure. For this article, we hope you have an active Azure subscription. At the time of wr...Dec 23, 2022·4 min read·199
378. Kth Smallest Element in a Sorted MatrixLet's discuss today the problem 378. Kth Smallest Element in a Sorted Matrix at leetcode. Problem link https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix/ The example in question has following Input: matrix = [ [1,5,9] [10,11,13] ...Aug 16, 2022·2 min read·38