Core Java
-
Add Grpc to your Java Application
Grpc is a high performance, open source universal RPC framework.There are various benefits for using gRPC. It simplifies development by…
Read More » -
Prestructors
Making constructors pre-process the arguments before encapsulating them seems to be bad practice. However, very often it’s necessary to do…
Read More » -
How to crawl websites with Selenide and JDK 14+
Sometimes we find ourselves in a situation in which we need certain data, that needs to be manually fetched from…
Read More » -
Set it up
In Java, we often have framework support for importing settings from the file system of our application. If we’re lucky,…
Read More » -
Java 8 Streams Filter With Multiple Conditions Examples
A quick guide to java 8 streams filtering concept with multiple conditions. This demonstrates how to use filter() in a…
Read More » -
Java – How to Convert Java Array to Iterable?
A quick guide to convert an array to iterable in java using Stream api with examples programs in two ways.…
Read More » -
Java 8 – Converting a List to String with Examples
A quick guide to convert List to String in java using different methods and apache commons api with examples. 1.…
Read More » -
Java 8 IntStream With Working Examples
A quick guide to understand primitive int representation of Stream as interface IntStream to support integer operations and with the…
Read More » -
Java Convert File Contents to String
A quick guide on how to convert the file contents to String using Java Files api and with example programs.…
Read More »