Core Java
-
A Guide to Micrometer in Quarkus
In this article, we will explore and gain a comprehensive understanding of Micrometers in Quarkus. 1. Introduction Micrometer is a…
Read More » -
Introduction to JavaParser
JavaParser is a powerful library that provides an easy way to parse, analyze, and manipulate Java source code. It can…
Read More » -
Finding the Second Smallest Number in an Array in Java
In this article, we will explore three different methods to find the second smallest number in an array using Java.…
Read More » -
Convert Optional to ArrayList
1. Introduction Java 8 introduced the java.util.Optional class to represent a value that may or may not be present to…
Read More » -
Hibernate load() and get(): What’s the Difference?
Two commonly used methods in Hibernate for retrieving objects from the database are load() and get(). Though they appear similar,…
Read More » -
How to Make Multiple REST Calls in CompletableFuture
Parallelism, where multiple tasks are executed simultaneously, can significantly improve performance by reducing the overall wait time for all the…
Read More » -
Understanding Maven Dependency Graph or Tree
Working on large Maven projects can be daunting, especially when it comes to managing dependencies between modules and libraries and…
Read More » -
Java for Machine Learning with TensorFlow or PyTorch
While Python reigns supreme in the world of machine learning (ML), Java developers aren’t entirely left out. While TensorFlow and…
Read More » -
JUnit vs Mockito: How They Differ
When it comes to developing Java applications, unit testing is an essential practice. Two widely used tools in this domain…
Read More »