Core Java
-

Extract the Common Name (CN) from an X509 Certificate in Java
The Common Name (CN) is a critical field within an X509 certificate that identifies the entity owning the certificate. In…
Read More » -

Conquering Errors in Java Lambdas
Java lambdas, with their concise syntax and focus on functionality, have revolutionized Java programming. But what happens when things go…
Read More » -

Guide to ExecutorService vs. CompletableFuture
Modern applications often require efficient handling of concurrent tasks to improve performance and responsiveness. Java provides robust concurrency utilities, such…
Read More » -

Mastering Java’s Executor Framework
In the fast-paced world of modern applications, efficiency is key. Often, tasks need to run concurrently to avoid bottlenecks and…
Read More » -

Include null Value in JSON Serialization
1. Introduction JavaScript Object Notation (JSON) is text-based data format that is easy for humans to read and write and…
Read More » -

Best Practices for Using JDBC in Java Applications
Java Database Connectivity (JDBC) is a powerful API that bridges the gap between your Java applications and relational databases. By…
Read More » -

Intro to the Apache Commons CLI
The Apache Commons CLI library is a powerful tool that enables developers to efficiently create command line interfaces (CLIs) for…
Read More » -

Capture Method Arguments in Mockito Test
During code testing, we may need to capture the method parameters. Let us delve into understanding how Mockito captures passed…
Read More »



