Apache Kafka

In this tutorial, we are understanding about Apache Kafka. Apache Kafka is a highly scalable distributed messaging system. Kafka is useful where a large amount of data transfer from one end to another end and it should be scalably, fast, and reliable. We can transfer data between different sources....

Multithreading in Java | Part-1

In this tutorial series, we are learning multithreading in Java. This is the first article in the series. Here we are going through the basic concept of multithreading. Multitasking Executing several tasks simultaneously is the concept of multitasking There are two types of multitasking: Process-based...

Exception Handling in Java | Part-3

This is the third post on a series of Exception Handling in Java. In this article, we will revise exception handling keywords, various possible compile-time errors, in detail about customized or user-defined exceptions and enhancement. Before starting these, please go through Exception Handling in Java...

Exception Handling in Java | Part-2

This is the second post on a series of Exception Handling in Java. In this article, we will learn methods to print exception info, try with multiple catch blocks, finally block and most important difference between final, finally, finalize. Before starting these, please go through Exception Handling...

Exception Handling in Java | Part-1

In this article, we're going to talk about Exception in Java. What is an exception? An unexpected, unwanted event that disturbs the normal flow of the program is called an exception. It is highly recommended to handle the exception. The main objective of exception handling is the graceful termination...