PinnedConfiguring libcurl in Visual Studio 2022Libcurl is freely available client side URL transfer library that is used to perform HTTP/HTTPS requests, FTP uploading and much more! click here. This blog comprises of steps to build libcurl, creating and configuring your first C++ project in Visua...Oct 20, 2022·3 min read
Binary SearchRepeatedly divide the array or list into halves to reduce the search space and locate the target value. How it works ? Define start of array as index 0 initially. Define end of array as index of array’s length -1 initially. Run a loop until start ...Sep 22, 2024·2 min read
Linear SearchLinear search, also known as sequential search is used to find a specific value withing an array or a list. It checks each element one by one until desired element is found and end of the list is reached. How it works ? Start from first element in t...Sep 22, 2024·1 min read
Spring Boot Actuator: Seamlessly Monitor your ApplicationsIntroduction Spring Boot Actuator helps to monitor and manage your application in production. It provides a number of endpoints to gain insights into application's health, metrics, list of beans, request mappings and other information. How to use Act...Aug 5, 2024·2 min read
Setting Up Complex Configurations for Spring Boot applicationsIntroduction In Spring Boot, the service configurations defined in application.properties file are automatically bind to Java objects using "@ConfigurationProperties" annotation. It helps you centralize the configurations and easily inject properties...Aug 5, 2024·2 min read
3 Core Features of Spring Boot: All You Need To KnowIntroduction To build a complete web application a lot of frameworks are required. For example: REST APIs: Spring, Spring MVC, Tomcat, JSON conversion etc Unit Testing: Spring Test, JUnit, Mockito etc Spring Boot provides following three core fea...Aug 4, 2024·4 min read
Spring Boot: The Game Changer for Rapid Application DevelopmentIntroduction In this article we'll look at a big picture of how Spring Boot helps to quickly build production ready applications. Setting up Spring projects earlier was not easy! It was required to manage dependency injection through xml files, and i...Aug 4, 2024·3 min read