Java Streams, Lambda Expression N B 3/22/2020 07:53:00 pm 0 Streams We can perform various aggregate operations on the data returned from collections classes by reducing the complexity of the code. ... Read more »
Jenkins Pipeline Project(Declarative pipeline syntax, Pipeline script from SCM) N B 3/22/2020 04:00:00 pm 0 We generally use "Jenkins Pipeline Project" with Large scale applications with many Jobs. This is created by executing Jenkins ... Read more »
Docker Selenium Grid N B 3/21/2020 01:07:00 pm 0 Install Docker Enable Virtualization from Bios Setup run VM from Oracle Box Run Docker terminal type --> docker info Go to h... Read more »
How to Create a Standalone Wiremock Stub Server N B 3/07/2020 09:51:00 pm 0 Why we need Mocking? We are often in a need to create stubs or mocks when the API under test is not completely ready or we need to test t... Read more »
API Scaling, Rate Limiting and API Testing Terminology N B 3/07/2020 03:15:00 pm 0 Client id and Client secret When you register your app, you will receive a client ID and optionally a client secret . The client ID i... Read more »
Comparable Interface in Java N B 3/07/2020 01:41:00 pm 0 Java Comparable interface is used to order the objects of user-defined class. This interface is found in java.lang package and contains ... Read more »
Comparator in Java N B 3/07/2020 01:40:00 pm 0 It is in java.util package Comparator is used to have customized sorting It defines two methods 1.) Compare 2.) Equals public in... Read more »
Why we Override toString() N B 3/07/2020 01:12:00 pm 0 Class without toString() Override package EmployeeWithLowestSalaryUsingPriorityQueue; public class Employee { String name; i... Read more »
TreeSet N B 3/07/2020 01:12:00 pm 0 TreeSet is implementation of Set interface We have other implementation as well like HashSet and LinkedHashset. We use HashSet if we ... Read more »
PriorityQueue N B 3/07/2020 01:11:00 pm 0 In which scenarios we should use PriorityQueue. For example, you may want to order employee records in the ascending order of their salar... Read more »
Thread Pool Concepts and Parameters Required for Tuning N B 3/07/2020 12:49:00 pm 0 If there are more than corePoolSize but less than maximumPoolSize threads running, a new thread will be created only if the queue is full.)... Read more »