Core Java
-
The DTO (Data Transfer Object)
1. Introduction to DTO Having a big application that has multiple layers you will need to “transport” that data between…
Read More » -
Bucket Sort Algorithm
1. Introduction In this article, we will look specifically at the Bucket Sort Algorithm, which is a type of Sorting…
Read More » -
Bit Masking in Java
1. Introduction Bit masking is visualizing a number or other data in binary representation. Some bits are set and others are unset where set means true or 1 and unset means false or 0. It…
Read More » -
Sliding Window Algorithm in Java
1. Introduction This is an in-depth article related to the Sliding Window Algorithm. This algorithm cuts down the necessity of…
Read More » -
-Xms and -Xmx parameter
Hello. In this tutorial, we will understand Xms and Xmx parameters in the java programming language. 1. Introduction Heap space…
Read More » -
CRUD operations in postgres jsonb
Hello. In this tutorial, we will learn how to handle crud operations on a jsonb column in the postgres database.…
Read More » -
GC Overhead Limit Exceeded
Hello. In this tutorial, we will understand the GC Overhead Limit Exceeded error in the Java programming language. 1. Introduction Out…
Read More » -
Convert CSV to Json using Java
1. Introduction A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each…
Read More » -
Java HTTPS Client
Hello. In this tutorial, we will make an https client call from java and log the output on the console.…
Read More » -
Tree Map in Java
1. Introduction A Tree Map is a red-black tree-based NavigableMap implementation. A NavigableMap is a SortedMap with some navigation methods…
Read More »