Core Java
-

Java 8 – Convert IntStream To List and Other
A quick guide on how to convert IntStream to List in java 8. 1. Overview In this tutorial, We’ll learn…
Read More » -

13 Best Java Decompilers for Download and Online Use for Java Developers
A quick guide to best java decompilers for the java developers offline usage and best online java decompilers. 1. Overview…
Read More » -

Java Math pow() method Example (Recursive and Loop Iterative)
A quick guide to Math.pow() method in java. Custom implementation of Math pow() using iterative and recursive approaches. 1. Overview…
Read More » -

Did You Know You Can Create Mappers Without Creating Underlying Objects in Java?
As most Java developers know, putting values in a Java Map (like a HashMap) involves creating a large number of…
Read More » -

Avoid leaking domain logic
Many software architectures try to separate domain logic from other parts of the application. To follow this practice we always…
Read More » -

Logging Side Effects
One would like to assume that turning logging on would have no side effect on the running software. LOGGER.info("The current…
Read More » -

Execute mTLS calls using Java
Previously we secured an Nginx instance using SSL and mTLS. If you are using Java interacting with a service secured…
Read More » -

Overhead added by collecting thread dumps
A thread dump is a snapshot of all the threads running in a java process. It’s a vital artifact to…
Read More » -

Performance impact of java.lang.System.getProperty()
‘java.lang.System.getProperty()’ is a common API used by Java developers to read the System properties that are configured during application startup…
Read More »

