Java
-
Box old objects to be autoclosable
Since Java 7 we can use try-with-resources and have any object automatically closed that implements the Autocloseable interface. If the…
Read More » -
Spring Dependency Injection
Introduction: In a well-designed Java application, the classes should be as independent as possible. Such a design promotes reusability of…
Read More » -
Java: How to Slash Down Building Times Using the Cloud
Building larger Java projects on a laptop with Maven can be frustrating and slow. Learn how you could slash down…
Read More » -
Java Queue Interface
Introduction: A Queue is a FIFO (First In First Out) abstract data type (ADT). In other words, the elements are…
Read More » -
Spring Boot Exit Codes – Create Custom Exit Code
When running a Spring Boot application, we get a system exit code of 0, when everything goes fine. For any…
Read More » -
Java ArrayDeque
Introduction: ArrayDeque in Java is a class that implements a Deque interface. It’s an array-based implementation of a double-ended queue.…
Read More » -
Using @ResponseStatus for Http Status in Spring
Introduction: In Spring MVC, we can set the status of the HttpResponse in several ways. In this tutorial, we’ll achieve…
Read More » -
PriorityBlockingQueue In Java
Introduction: A PriorityBlockingQueue in Java implements the BlockingQueue interface and supports the features of a PriorityQueue. So, what’s a BlockingQueue?…
Read More » -
What To Expect From The New Version Of Selenium 4 Alpha?
All of us belonging to the testing domain are familiar with Selenium, one of the most popular open source automation…
Read More »