Let’s talk about the JDBC best practices in Java. It will greatly improve the JDBC code…
Category: Java
java
Stream API: The Hero Without a Cape
The Stream API, included in Java 8, is utilised for processing collections of objects. Stream API…
Thread Pool: Recycle the Threads and Save the Resources
Using thread pool in java to reuse the thread. Thread pool increases the efficiency of the…
Functional Interfaces To Become More Functional in Java
Using Functional interfaces provided by Java we can become more functional. And Knowing them would help…
Java Naming Conventions: What’s In a Name?
java Naming Convention is one of the many steps to increase the readability of your code.…
How Multi Threading Lets You do Things Simultaneously
When doing a thing, prepare another, meanwhile, execute something else. Challenging, isn't it? Let's do the…