Category:
Java
by Mahesh More
In Java memory management, a Garbage collector is the process by which Java programs perform automatic memory management. This is a more complicated process.
by Mahesh More
Memory management is the process of allocation and de-allocation of objects from memory, it’s done automatically with the help of garbage collectors.
by Imran Shaikh
Before seeing Optional in Java, Did you know that Null Pointer Exception is termed as Billion Dollar mistake? Lets see how to avoid it.
by Imran Shaikh
We will discuss How to use Lombok in our code. We will look at @Getter @Setter and @Data @Log @Builder and many more. Fully …
by Imran Shaikh
No more boilerplate code in Java. Use Lombok to make your code less cluttered and more readable. We will see the installation of Lombok …
by Imran Shaikh
All the Sorting Algorithms code in one single page. Get a quick glance in sorting code is in Java for your interview. I have …
by Imran Shaikh
3 magical steps for latest or any jdk installation. You can have multiple versions of JDK at the same time and switch between them …
by Imran Shaikh
These 7 Intellij IDEA shortcuts can skyrocket your productivity while coding. To be honest, you don’t need to learn every shortcut, these seven are …
by Imran Shaikh
We will talk about all the things about the JDBC connection pool and its implementation using HikariCP. HikariCP is one of the fastest connection …
by Imran Shaikh
The Stream API, included in Java 8, is utilised for processing collections of objects. Stream API can make your code more simple, efficient, and …