Spring Boot Actuator is one of the greatest and most useful feature in Spring Boot framework. Actuator module in spring boot helps application developers to implement the production grade features like metrics, health check, security, etc. with minimal effort.This article will guide you through how to enable the spring boot actuator, configure endpoints and how to modify the default settings in the application.properties file. Note that spring boot actuator can work only for the spring boot application, this can not be integrated to the non-spring boot applications.List of Endpoints SupportedHere is the list of actuator endpoints that is supported at ... Read More
Cloud computing plays a crucial role in information and technology sector. It has changed the dimension of the society. Most of the companies are moving towards cloud due to its cost efficiency and scalability. Moving towards a new technology shouldn’t be an additional burden for the organization. Complete analysis on cost aspects of cloud and knowing the advantages of the cloud will avoid such unnecessary issue. As there are few cases where the existing environment will be cost efficient than moving to the cloud. The success of migration depends upon the choice of the cloud. This article will highlight the ... Read More
In this problem, we are given an mXn 2D matrix and we have to print all possible paths from top left to the bottom right of the matrix. For traversal, we can move only right and down in the matrix.Let’s take an example to understand the topic better −Input: 1 3 5 2 8 9 Output: 1 -> 3 -> 5 -> 9 1 -> 3 -> 8 -> 9 1 -> 2 -> 8 -> 9To solve this problem, we will move from one cell to another and print the path on going down and right. We will do ... Read More
In this problem, we are given a set of characters and a positive integer k and we have to print all possible strings of length k that can be generated using the characters of the set.Let’s take an example to understand the problem better −Input: set = {‘x’, ‘y’, ‘z’} , k = 2 Output: xy, xz, yzTo solve this problem, we have to find all possible sequences that can be generated. For the set of size n, the total number of a possible string of length k will be nk (n^k). We will use a recursive call to generate ... Read More
When it comes to managing, identifying and organizing your followers on social media platforms such as Twitter and Instagram, Social Rank stands second to none.What is Social Rank?Social Rank is an online enterprise product that allows you to carve a niche for yourself and your brand by making it easy for you to conduct extensive research for your business. Social Rank is a Market Intelligence tool that helps you manage the followers on Twitter and Instagram.The standout feature of this enterprise product is that it is completely free. Social media influencers propound that Social Rank helps brands identify their most ... Read More
In this problem, we are given a string and we have to print all those string that can be made using this string by placing space in between the characters of the string.Let’s take an example to understand the topic better −Input: string = ‘XYZ’ Output: XYZ, XY Z, X YZ, X Y ZTo solve this problem, we will have to find all the possible ways in which we can put space in the string. For this we will use recursion. In this, we will place spaces on by one and generate a new string.Example Live Demo#include #include using ... Read More
In this problem, we are given a positive integer N and we have to print the sequence of all possible consecutive numbers with a sum equal to N.Let’s take an example to understand the problem,Input: N = 15 Output: 1 2 3 4 5 7 8A simple solution to this problem is by adding up consecutive sequence combinations till N/2. And then print the sequence that sums up to N.Example Live Demo#include using namespace std; void printConsequtiveSum(int N){ int start = 1, end = (N+1)/2; while (start < end){ int sum = 0; for (int i = start; i
We are living in a fast paced competitive world, where everybody wants his work to be completed as soon as possible. The industries across the world also have not escaped from this mindset. The customers who buys the products and services; the companies who provides those, and the employees who works on those projects, everybody has that pressure to get the job done on or before time. So it is the need of the hour to prepare project schedule more accurately and cautiously.Let’s discuss a scenario which can happen to any project, if proper schedule management processes are not in ... Read More
Social CRM has been generating a lot of buzz lately. Customer Relationship Management (CRM) has taken on a whole new meaning in this ever-changing social media landscape. What exactly is social CRM? In the words of social CRM expert and bestselling author, Paul Greenberg, “Social CRM is a philosophy and a business strategy supported by a technology platform, business rules, workflow, processes, and social characteristics designed to engage a customer in a collaborative conversation to provide mutually beneficial value in a trusted and transparent business environment.”What is Social CRM?Social CRM is all about putting customers first. It is about reaching ... Read More
As the saying goes – A man must be big enough to admit his mistakes, smart enough to profit from them, and strong enough to correct them. In IT world too mistakes are commonly done by new comers in the field due to inexperience. The Unix world is no different from the rest, and system admins unknowingly tend to commit some avoidable errors in their early days in the beginning of their career. Here are a few mistakes which are made by new system admins or users while working at UNIX prompt.This article explains the 10 most common Linux mistakes.userdel ... Read More
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP